Created
June 16, 2014 05:04
-
-
Save nekop/e76496c573238bdb59b6 to your computer and use it in GitHub Desktop.
RHEL7 kickstart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
install | |
url --url=http://example.com/your/path/to/rhel7/install/image/RHEL-7/7.0/Server/x86_64/os/ | |
lang en_US.UTF-8 | |
keyboard us | |
network --onboot yes --device eth0 --bootproto dhcp --ipv6 auto | |
rootpw foobar | |
firewall --service=ssh | |
authconfig --enableshadow --passalgo=sha512 | |
selinux --enforcing | |
timezone --utc Asia/Tokyo | |
bootloader --location=mbr | |
text | |
skipx | |
zerombr | |
clearpart --all --initlabel | |
autopart | |
firstboot --disabled | |
reboot | |
%packages | |
@base | |
@core | |
%end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment