Skip to content

Instantly share code, notes, and snippets.

@mattneel
Created October 18, 2015 20:39
Show Gist options
  • Save mattneel/6a173a1f57b2c1faea6e to your computer and use it in GitHub Desktop.
Save mattneel/6a173a1f57b2c1faea6e to your computer and use it in GitHub Desktop.
Pixie CentOS 6.7 Kickstart Template
# Kickstart file automatically generated by Pixie.
install
url --url {{{url}}}
lang en_US.UTF-8
keyboard us
zerombr yes
reboot
network --onboot yes --device eth0 --bootproto static --ip {{{ipaddr}}} --netmask {{{netmask}}} --gateway {{{gateway}}} --nameserver {{{nameserver}}} --hostname {{{hostname}}}
rootpw --iscrypted {{{password}}}
firewall --service=ssh
authconfig --enableshadow --passalgo=sha512
selinux --enforcing
timezone --utc America/New_York
bootloader --location=mbr --driveorder=sda --append="crashkernel=auto rhgb quiet"
clearpart --all --drives=sda --initlabel
part /boot --fstype ext3 --size 125
part swap --recommended
part / --fstype ext4 --size 4096 --grow
repo --name="CentOS" --baseurl={{{url}}} --cost=100
%packages --nobase
@core
%end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment