Sha256: f34fed45a5f00eb1b67dc6d132ab8759b8eb8f48ed80c485e6b11239afc59eb7
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 KB
Contents
#http://chrisadams.me.uk/2010/05/10/setting-up-a-centos-base-box-for-development-and-testing-with-vagrant/ #kernel source is needed for vbox additions date > /etc/vagrant_box_build_time yum -y install gcc bzip2 make kernel-devel-`uname -r` #yum -y update #yum -y upgrade yum -y install gcc-c++ zlib-devel openssl-devel readline-devel sqlite3-devel yum -y erase wireless-tools gtk2 hicolor-icon-theme avahi freetype bitstream-vera-fonts yum -y clean all #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 sed -i "s/^\(.*env_keep = \"\)/\1PATH /" /etc/sudoers # Add the puppet group. #/usr/sbin/groupadd puppet #poweroff -h exit
Version data entries
2 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
veewee-atlassian-0.3.11 | templates/scientificlinux-5.9-i386/postinstall.sh |
veewee-atlassian-0.3.11 | templates/scientificlinux-5.9-x86_64/postinstall.sh |