Advertisement
Guest User

Untitled

a guest
Jul 11th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. #platform=x86, AMD64, or Intel EM64T
  2. # System authorization information
  3. auth --enableshadow --passalgo=sha512 --enablesssd --enablesssdauth
  4. # System bootloader configuration
  5. bootloader --location=mbr
  6. # Partition clearing information
  7. clearpart --all --initlabel
  8. # Use text mode install
  9. graphical
  10. # Firewall configuration
  11. firewall --disabled
  12. # Run the Setup Agent on first boot
  13. firstboot --disable
  14. # System keyboard
  15. keyboard us
  16. # System language
  17. lang en_US
  18. # Use network installation
  19. url --url=$tree
  20. # If any cobbler repo definitions were referenced in the kickstart profile, include them here.
  21. $yum_repo_stanza
  22. # Network information
  23. $SNIPPET('network_config')
  24. # Reboot after installation
  25. reboot
  26.  
  27. #Root password
  28. rootpw password
  29. # SELinux configuration
  30. selinux --disabled
  31. skipx
  32. # System timezone
  33. timezone America/Vancouver
  34. # Install OS instead of upgrade
  35. install
  36. # Clear the Master Boot Record
  37. zerombr
  38. # Allow anaconda to partition the system as needed
  39. autopart
  40.  
  41. %packages --nobase
  42.  
  43. %end
  44.  
  45. %pre
  46. $SNIPPET('log_ks_pre')
  47. $SNIPPET('kickstart_start')
  48. $SNIPPET('pre_install_network_config')
  49. # Enable installation monitoring
  50. $SNIPPET('pre_anamon')
  51.  
  52. %packages
  53. $SNIPPET('func_install_if_enabled')
  54. $SNIPPET('puppet_install_if_enabled')
  55.  
  56. %post
  57. $SNIPPET('log_ks_post')
  58. # Start yum configuration
  59. $yum_config_stanza
  60. # End yum configuration
  61. $SNIPPET('post_install_kernel_options')
  62. $SNIPPET('post_install_network_config')
  63. $SNIPPET('func_register_if_enabled')
  64. $SNIPPET('puppet_register_if_enabled')
  65. $SNIPPET('download_config_files')
  66. $SNIPPET('koan_environment')
  67. $SNIPPET('redhat_register')
  68. $SNIPPET('cobbler_register')
  69. # Enable post-install boot notification
  70. $SNIPPET('post_anamon')
  71. # Start final steps
  72. $SNIPPET('kickstart_done')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement