Created
December 9, 2015 02:17
-
-
Save farshidce/51082a740bd799c5f42f to your computer and use it in GitHub Desktop.
centos7kickstarter
This file contains 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
# CentOS 7.0 kickstart for XenServer | |
# branch: develop | |
########################################## | |
# Install, not upgrade | |
install | |
# Install from a friendly mirror and add updates | |
url --mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os | |
repo --name=centos-updates --mirrorlist=http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=updates | |
# Language and keyboard setup | |
lang en_US.UTF-8 | |
keyboard us | |
# Configure networking without IPv6, firewall off | |
# for STATIC IP: uncomment and configure | |
# network --onboot=yes --device=eth0 --bootproto=static --ip=192.168.###.### --netmask=255.255.255.0 --gateway=192.168.###.### --nameserver=###.###.###.### --noipv6 --hostname=$$$ | |
# for DHCP: | |
network --bootproto=dhcp --device=eth0 --onboot=on | |
firewall --enabled --ssh | |
# Set timezone | |
timezone --utc Etc/UTC | |
# Authentication | |
rootpw --lock | |
# if you want to preset the root password in a public kickstart file, use SHA512crypt e.g. | |
# rootpw --iscrypted $6$9dC4m770Q1o$FCOvPxuqc1B22HM21M5WuUfhkiQntzMuAV7MY0qfVcvhwNQ2L86PcnDWfjDd12IFxWtRiTuvO/niB0Q3Xpf2I. | |
user --name=centos --password=Asdfqwerty --plaintext --gecos="CentOS User" --shell=/bin/bash --groups=user,wheel | |
# if you want to preset the user password in a public kickstart file, use SHA512crypt e.g. | |
# user --name=centos --password=$6$9dC4m770Q1o$FCOvPxuqc1B22HM21M5WuUfhkiQntzMuAV7MY0qfVcvhwNQ2L86PcnDWfjDd12IFxWtRiTuvO/niB0Q3Xpf2I. --iscrypted --gecos="CentOS User" --shell=/bin/bash --groups=user,wheel | |
authconfig --enableshadow --passalgo=sha512 | |
# SELinux enabled | |
selinux --enforcing | |
# Disable anything graphical | |
skipx | |
text | |
eula --agreed | |
# Setup the disk | |
zerombr | |
clearpart --all --drives=xvda | |
part /boot --fstype=ext3 --size=500 --asprimary | |
part / --fstype=ext4 --grow --size=1024 --asprimary | |
bootloader --timeout=5 --driveorder=xvda --append="console=hvc0" | |
# Shutdown when the kickstart is done | |
halt | |
# Minimal package set | |
%packages --excludedocs | |
@base | |
@network-file-system-client | |
deltarpm | |
yum-plugin-fastestmirror | |
dracut-config-generic | |
-dracut-config-rescue | |
-plymouth | |
-fprintd-pam | |
-wireless-tools | |
-NetworkManager | |
-NetworkManager-tui | |
-*-firmware | |
%end | |
%post --log=/root/ks-post.log | |
echo -n "Network fixes" | |
# initscripts don't like this file to be missing. | |
cat > /etc/sysconfig/network << EOF | |
NETWORKING=yes | |
NOZEROCONF=yes | |
EOF | |
echo -n "." | |
# For cloud images, 'eth0' _is_ the predictable device name, since | |
# we don't want to be tied to specific virtual (!) hardware | |
rm -f /etc/udev/rules.d/70* | |
ln -s /dev/null /etc/udev/rules.d/80-net-name-slot.rules | |
echo -n "." | |
# simple eth0 config, again not hard-coded to the build hardware | |
cat > /etc/sysconfig/network-scripts/ifcfg-eth0 << EOF | |
DEVICE="eth0" | |
BOOTPROTO="dhcp" | |
ONBOOT="yes" | |
TYPE="Ethernet" | |
PERSISTENT_DHCLIENT="yes" | |
EOF | |
echo -n "." | |
# generic localhost names | |
cat > /etc/hosts << EOF | |
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 | |
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 | |
EOF | |
echo -n "." | |
# since NetworkManager is disabled, need to enable normal networking | |
chkconfig network on | |
echo . | |
# utility script | |
echo -n "Utility scripts" | |
echo "== Utility scripts ==" >> /root/ks-post.debug.log | |
wget -O /opt/domu-hostname.sh https://github.com/frederickding/xenserver-kickstart/raw/develop/opt/domu-hostname.sh 2>> /root/ks-post.debug.log | |
chmod +x /opt/domu-hostname.sh | |
echo . | |
# remove unnecessary packages | |
echo -n "Removing unnecessary packages" | |
echo "== Removing unnecessary packages ==" >> /root/ks-post.debug.log | |
yum -C -y remove linux-firmware >> /root/ks-post.debug.log 2&>1 | |
echo . | |
# generalization | |
echo -n "Generalizing" | |
rm -f /etc/ssh/ssh_host_* | |
echo . | |
# fix boot for older pygrub/XenServer | |
# you should comment out this entire section if on XenServer Creedence/Xen 4.4 | |
echo -n "Fixing boot" | |
echo "== GRUB fixes ==" >> /root/ks-post.debug.log | |
cp /boot/grub2/grub.cfg /boot/grub2/grub.cfg.bak | |
cp /etc/default/grub /etc/default/grub.bak | |
cp --no-preserve=mode /etc/grub.d/00_header /etc/grub.d/00_header.bak | |
sed -i 's/GRUB_DEFAULT=saved/GRUB_DEFAULT=0/' /etc/default/grub | |
sed -i 's/default="\\${next_entry}"/default="0"/' /etc/grub.d/00_header | |
echo -n "." | |
cp --no-preserve=mode /etc/grub.d/10_linux /etc/grub.d/10_linux.bak | |
sed -i 's/${sixteenbit}//' /etc/grub.d/10_linux | |
echo -n "." | |
grub2-mkconfig -o /boot/grub2/grub.cfg >> /root/ks-post.debug.log 2&>1 | |
echo . | |
%end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment