nikitux

Untitled

Feb 13th, 2014
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. Firewall configuration
  2. firewall --disabled
  3. # Install OS instead of upgrade
  4. install
  5. # Use CDROM installation media
  6. cdrom
  7. # Root password – 'testpass', encrypted
  8. rootpw --iscrypted $1$pcafN9bo$lueZDdCQMz8fc/brhDa1J1
  9. # Network information. Later we'll adjust it.
  10. network --device=eth0 --bootproto=static --gateway=10.1.15.254 --ip=10.1.15.81 --nameserver=10.0.16.1 --netmask=255.255.255.0 --onboot=on
  11. # System authorization information
  12. auth --useshadow --passalgo=sha512 --enablefingerprint
  13. # Use text mode install
  14. text
  15. # System keyboard
  16. keyboard us
  17. # System language
  18. lang en_US
  19. # SELinux configuration
  20. selinux --disabled
  21. # Do not configure the X Window System
  22. skipx
  23. # Installation logging level
  24. logging --level=info
  25.  
  26. # System timezone
  27. timezone America/New_York
  28.  
  29. install
  30. harddrive --dir=/ --partition=sda1
  31.  
  32. ignoredisk --drives=/dev/sda
  33.  
  34. # System bootloader configuration
  35. bootloader --append="crashkernel=auto rhgb quiet" --location=mbr
  36. # Clear the MBR. Helps avoid problems with MBR.
  37. zerombr
  38. # Partition clearing information
  39. clearpart --all
  40.  
  41.  
  42.  
  43. %post
  44. #Here we will specify add a script later for changing the static IP of each new installation by accepting input
  45. %end
  46.  
  47. %packages
  48. @base
  49. @core
  50. @server-policy
  51.  
  52. %end
Advertisement
Add Comment
Please, Sign In to add comment