Fedora Remix maintained by the Rochester Institute of Technology (RIT) Linux Users Group, targeted at users new to Linux and RIT students, faculty, and staff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.6 KiB

  1. #!/bin/bash
  2. set -eu
  3. ####################################################################
  4. # TigerOS Build Script #
  5. # @author: Aidan Kahrs #
  6. # #
  7. # Usage: sudo bash make-iso.sh #
  8. # #
  9. ####################################################################
  10. green=`tput setaf 2`
  11. reset=`tput sgr0`
  12. echo "${green}Welcome to the TigerOS build script${reset}"
  13. # Check that the current user is root
  14. if [ $EUID != 0 ]
  15. then
  16. echo "Please run this script as root (sudo $@$0)."
  17. exit
  18. fi
  19. #mock -r fedora-25-x86_64 --init
  20. #mock -r fedora-25-x86_64 --copyin tigeros.ks ./tigeros.ks
  21. #mock -r fedora-25-x86_64 --install lorax-lmc-novirt git vim-minimal pykickstart svn
  22. #mock -r fedora-25-x86_64 --chroot "svn export https://github.com/RITlug/TigerOS/trunk/scripts/"
  23. echo "${green}Beginning build process${reset}"
  24. setenforce 0
  25. livemedia-creator --ks tigeros.ks --no-virt --resultdir /var/lmc --project TigerOS-Live --make-iso --volid TigerOS --iso-only --iso-name TigerOS.iso --releasever 25 --title TigerOS-live --macboot
  26. #mock -r fedora-25-x86_64 --chroot "livemedia-creator --ks tigeros.ks --no-virt --resultdir /var/lmc --project TigerOS-Live --make-iso --volid TigerOS --iso-only --iso-name TigerOS.iso --releasever 25 --title TigerOS-live --macboot"
  27. #mock -r fedora-25-x86_64 --copyout /var/lmc/TigerOS.iso TigerOS.iso
  28. echo "${green}ISO saved to $(pwd)/TigerOS.iso${reset}"
  29. setenforce 1