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.

55 lines
1.2 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. # The RIT Fedora Remix
  2. #
  3. # Authors:
  4. # Luke Macken <lmacken@redhat.com>
  5. # Eitan Romanoff <ear7631@gmail.com>
  6. # Aidan Kahrs <axk4545@rit.edu>
  7. #
  8. # Tasks:
  9. #
  10. #
  11. # Instructions:
  12. # sudo yum -y install spin-kickstarts livecd-tools
  13. # sudo livecd-creator -c fedora-rit-spin.ks
  14. %include /usr/share/spin-kickstarts/fedora-live-desktop.ks
  15. %include /usr/share/spin-kickstarts/fedora-live-minimization.ks
  16. %packages
  17. # Must-have applications
  18. # Legacy cmdline things we don't want
  19. # Drop some system-config things
  20. -system-config-boot
  21. -system-config-language
  22. -system-config-network
  23. -system-config-rootpassword
  24. -system-config-services
  25. -policycoreutils-gui
  26. %end
  27. %post
  28. # go to the backgrounds folder for custom images
  29. cd /usr/share/backgrounds/images
  30. # fetch custom RIT backgrounds
  31. # Fetch rpm fusion scripts, bash_profile
  32. su -c "mkdir -p /usr/share/autostart"
  33. su -c "mv FusionEnableLauncher.txt FusionEnableLauncher.py"
  34. su -c "mv enablerpmfusion.txt enablerpmfusion.sh"
  35. su -c "chmod a+rwx FusionEnableLauncher.py"
  36. su -c "chmod a+rwx enablerpmfusion.sh"
  37. su -c "cp FusionEnableLauncher.py /usr/share/autostart/FusionEnableLauncher.py"
  38. su -c "cp enablerpmfusion.sh /usr/share/autostart/enablerpmfusion.sh"
  39. %end