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.3 KiB

7 years ago
7 years ago
7 years ago
  1. #!/bin/bash
  2. set -eu
  3. #####################################################################
  4. # TigerOS Build Script for running on the build box with Jenkins CI #
  5. # @author: Aidan Kahrs #
  6. # #
  7. # Usage: sudo bash ci-build.sh #
  8. # #
  9. #####################################################################
  10. # Check that the current user is root
  11. if [ $EUID != 0 ]
  12. then
  13. echo "Please run this script as root (sudo $@$0)."
  14. exit
  15. fi
  16. setenforce 0
  17. rm -rf tigeros.ks
  18. wget -O tigeros.ks https://raw.githubusercontent.com/RITlug/TigerOS/master/tigeros.ks
  19. 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
  20. cp -f /var/lmc/TigerOS.iso /srv/isos/TigerOS-$(date +%Y%m%d).iso
  21. rm -rf /var/lmc/
  22. cd /srv/isos
  23. rm -rf CHECKSUM512-$(date +%Y%m%d)
  24. sha512sum TigerOS-$(date +%Y%m%d).iso > CHECKSUM512-$(date +%Y%m%d)
  25. chown -R nginx:nginx /srv
  26. chmod 755 /srv/isos/*.iso
  27. cd /home/build
  28. rm -rf anaconda/ *.log livemedia.log program.log
  29. setenforce 1
  30. echo "Build finished"