Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Firewall configuration
- firewall --disabled
- # Install OS instead of upgrade
- install
- # Use CDROM installation media
- cdrom
- # Root password – 'testpass', encrypted
- rootpw --iscrypted $1$pcafN9bo$lueZDdCQMz8fc/brhDa1J1
- # Network information. Later we'll adjust it.
- 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
- # System authorization information
- auth --useshadow --passalgo=sha512 --enablefingerprint
- # Use text mode install
- text
- # System keyboard
- keyboard us
- # System language
- lang en_US
- # SELinux configuration
- selinux --disabled
- # Do not configure the X Window System
- skipx
- # Installation logging level
- logging --level=info
- # System timezone
- timezone America/New_York
- install
- harddrive --dir=/ --partition=sda1
- ignoredisk --drives=/dev/sda
- # System bootloader configuration
- bootloader --append="crashkernel=auto rhgb quiet" --location=mbr
- # Clear the MBR. Helps avoid problems with MBR.
- zerombr
- # Partition clearing information
- clearpart --all
- %post
- #Here we will specify add a script later for changing the static IP of each new installation by accepting input
- %end
- %packages
- @base
- @core
- @server-policy
- %end
Advertisement
Add Comment
Please, Sign In to add comment