Created
April 3, 2013 04:54
-
-
Save joker1007/5298540 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
install | |
cdrom | |
lang ja_JP.UTF-8 | |
keyboard us | |
network --bootproto=dhcp | |
rootpw --iscrypted $1$damlkd,f$UC/u5pUts5QiU3ow.CSso/ | |
firewall --disabled | |
authconfig --enableshadow --passalgo=sha512 | |
selinux --disabled | |
timezone Asia/Tokyo | |
bootloader --location=mbr | |
text | |
skipx | |
zerombr | |
clearpart --all --initlabel | |
autopart | |
auth --useshadow --enablemd5 | |
firstboot --disabled | |
reboot | |
%packages --ignoremissing | |
@core | |
bzip2 | |
kernel-devel | |
kernel-headers | |
-ipw2100-firmware | |
-ipw2200-firmware | |
-ivtv-firmware | |
%end | |
%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.d/vagrant | |
chmod 0440 /etc/sudoers.d/vagrant | |
%end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment