Created
June 17, 2014 19:38
-
-
Save ellisio/ae8ab7da6edfcc047075 to your computer and use it in GitHub Desktop.
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
# Settings | |
lang en_US.UTF-8 | |
keyboard us | |
rootpw vagrant | |
authconfig --enableshadow --enablemd5 | |
timezone UTC | |
# Pre-install | |
install | |
cdrom | |
network --bootproto dhcp --noipv6 | |
firewall --disabled | |
selinux --disabled | |
bootloader --location=mbr | |
text | |
skipx | |
zerombr | |
clearpart --all --initlabel | |
autopart | |
firstboot --disabled | |
reboot | |
user --name=vagrant --plaintext --password vagrant | |
%packages --nobase --ignoremissing --excludedocs | |
kernel-headers | |
kernel-devel | |
gcc | |
make | |
perl | |
curl | |
wget | |
-fprint-pam | |
-intltool | |
-aic94xx-firmware | |
-atmel-firmware | |
-b43-openfwwf | |
-bfa-firmware | |
-ipw2100-firmware | |
-ipw2200-firmware | |
-ivtv-firmware | |
-iwl100-firmware | |
-iwl1000-firmware | |
-iwl3945-firmware | |
-iwl4965-firmware | |
-iwl5000-firmware | |
-iwl5150-firmware | |
-iwl6000-firmware | |
-iwl6000g2a-firmware | |
-iwl6050-firmware | |
-libertas-usb8388-firmware | |
-ql2100-firmware | |
-ql2200-firmware | |
-ql23xx-firmware | |
-ql2400-firmware | |
-ql2500-firmware | |
-rt61pci-firmware | |
-rt73usb-firmware | |
-xorg-x11-drv-ati-firmware | |
-zd1211-firmware | |
%post | |
/usr/bin/yum -y install sudo | |
/usr/sbin/groupadd vagrant | |
/usr/sbin/useradd vagrant -g vagrant -G wheel | |
echo "vagrant"|passwd --stdin vagrant | |
echo "vagrant ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment