SpaceInvaders

Kickstart File

Mar 25th, 2013
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. install
  2. text
  3. network --bootproto dhcp
  4. url --url http://192.168.1.2/ks/dist/org/1/Fedora-18-x86_64
  5. lang en_US.UTF-8
  6. keyboard us
  7. zerombr
  8.  
  9. #I am deleting the old partitions with this
  10. clearpart --all
  11.  
  12. #I am creating partitions here
  13. #I will create the lvm stuff farther down
  14. part /boot --fstype=ext4 --size=500 --ondisk=sda --asprimary
  15. part pv.5xwrsR-ldgG-FEmM-2Zu5-Jn3O-sx9T-unQUOe --grow --size=500 --ondisk=sda --asprimary
  16.  
  17. #Very important to have the two part lines before the lvm stuff
  18. volgroup VG --pesize=32768 pv.5xwrsR-ldgG-FEmM-2Zu5-Jn3O-sx9T-unQUOe
  19. logvol / --fstype=ext4 --name=lv_root --vgname=VG --size=40960
  20. logvol /home --fstype=ext4 --name=lv_home --vgname=VG --size=25600
  21. logvol swap --fstype swap --name=lv_swap --vgname=VG --size=4096
  22.  
  23. bootloader --location=mbr --driveorder=sda --append="rhgb quiet"
  24.  
  25.  
  26. timezone America/New_York
  27. auth --enablemd5 --enableshadow
  28. rootpw --iscrypted $1$JkYD6FpK$m2vU.Ogb9zKuIZe2IJp.E/
  29. selinux --permissive
  30. firewall --disabled
  31. skipx
  32. key --skip
  33.  
  34. %packages
  35. @ Base
  36.  
  37. %post
  38. $SNIPPET('redhat_register')
  39.  
  40. %packages
  41. @ Base
  42.  
  43. %post
  44. $SNIPPET('redhat_register')
  45.  
  46. reboot
Advertisement
Add Comment
Please, Sign In to add comment