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

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