Sha256: 01e4135408edfa73e57c90b7d9d17369b4c225dee2428779f662cf4f5768d470

Contents?: true

Size: 1.36 KB

Versions: 14

Compression:

Stored size: 1.36 KB

Contents

#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://yum.puppetlabs.com/el/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 'https://raw.github.com/mitchellh/vagrant/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

Version data entries

14 entries across 7 versions & 3 rubygems

Version Path
HeSYINUvSBZfxqA-veewee-0.203.3 templates/CentOS-6.0-i386/postinstall.sh
HeSYINUvSBZfxqA-veewee-0.203.3 templates/CentOS-6.0-x86_64/postinstall.sh
HeSYINUvSBZfxqA-veewee-0.203.2 templates/CentOS-6.0-x86_64/postinstall.sh
HeSYINUvSBZfxqA-veewee-0.203.2 templates/CentOS-6.0-i386/postinstall.sh
HeSYINUvSBZfxqA-veewee-0.203.1 templates/CentOS-6.0-i386/postinstall.sh
HeSYINUvSBZfxqA-veewee-0.203.1 templates/CentOS-6.0-x86_64/postinstall.sh
veewee-0.2.3 templates/CentOS-6.0-i386/postinstall.sh
veewee-0.2.3 templates/CentOS-6.0-x86_64/postinstall.sh
veewee-0.2.2 templates/CentOS-6.0-i386/postinstall.sh
veewee-0.2.2 templates/CentOS-6.0-x86_64/postinstall.sh
vbox-0.0.4 templates/CentOS-6.0-x86_64/postinstall.sh
vbox-0.0.4 templates/CentOS-6.0-i386/postinstall.sh
veewee-0.2.1 templates/CentOS-6.0-i386/postinstall.sh
veewee-0.2.1 templates/CentOS-6.0-x86_64/postinstall.sh