Created
March 27, 2012 12:02
-
-
Save zipkid/2215319 to your computer and use it in GitHub Desktop.
Vagrant - postinstall.sh
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
#http://chrisadams.me.uk/2010/05/10/setting-up-a-centos-base-box-for-development-and-testing-with-vagrant/ | |
date > /etc/vagrant_box_build_time | |
cat > /etc/yum.repos.d/puppetlabs.repo << EOM | |
[puppetlabs] | |
name=puppetlabs | |
baseurl=http://stahnma.fedorapeople.org/puppetlabs/6/products/\$basearch | |
enabled=1 | |
gpgcheck=0 | |
EOM | |
cat > /etc/yum.repos.d/epel.repo << EOM | |
[epel] | |
name=epel | |
baseurl=http://download.fedoraproject.org/pub/epel/6/\$basearch | |
enabled=1 | |
gpgcheck=0 | |
EOM | |
yum -y install puppet facter ruby-devel rubygems | |
yum -y erase wireless-tools gtk2 libX11 hicolor-icon-theme avahi freetype bitstream-vera-fonts | |
yum -y clean all | |
### rm /etc/yum.repos.d/{puppetlabs,epel}.repo | |
gem install --no-ri --no-rdoc chef | |
# Installing vagrant keys | |
mkdir /home/vagrant/.ssh | |
chmod 700 /home/vagrant/.ssh | |
cd /home/vagrant/.ssh | |
wget --no-check-certificate 'http://github.com/mitchellh/vagrant/raw/master/keys/vagrant.pub' -O authorized_keys | |
chown -R vagrant /home/vagrant/.ssh | |
# Installing the virtualbox guest additions | |
VBOX_VERSION=$(cat /home/vagrant/.vbox_version) | |
cd /tmp | |
wget http://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso | |
mount -o loop VBoxGuestAdditions_$VBOX_VERSION.iso /mnt | |
sh /mnt/VBoxLinuxAdditions.run | |
umount /mnt | |
rm VBoxGuestAdditions_$VBOX_VERSION.iso | |
sed -i "s/^.*requiretty/#Defaults requiretty/" /etc/sudoers | |
dd if=/dev/zero of=/tmp/clean || rm /tmp/clean | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment