Sha256: b564709e3e3e4861ab4023e9f06eeeb2c6846019d763883421c45b9c51c26cec
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
#http://adrianbravo.tumblr.com/post/644860401 #Updating the box apt-get -y update #apt-get -y upgrade apt-get -y remove apparmor apt-get -y install linux-headers-$(uname -r) build-essential apt-get -y install zlib1g-dev libssl-dev libreadline5-dev apt-get clean #Setting up sudo cp /etc/sudoers /etc/sudoers.orig sed -i -e 's/%admin ALL=(ALL) ALL/%admin ALL=NOPASSWD:ALL/g' /etc/sudoers #Installing ruby wget http://rubyforge.org/frs/download.php/71096/ruby-enterprise-1.8.7-2010.02.tar.gz tar xzvf ruby-enterprise-1.8.7-2010.02.tar.gz ./ruby-enterprise-1.8.7-2010.02/installer -a /opt/ruby --no-dev-docs --dont-install-useful-gems echo 'PATH=$PATH:/opt/ruby/bin/'> /etc/profile.d/rubyenterprise.sh rm -rf ./ruby-enterprise-1.8.7-2010.02/ rm ruby-enterprise-1.8.7-2010.02.tar.gz #Installing chef /opt/ruby/bin/gem install chef --no-ri --no-rdoc #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) #INstalling the virtualbox guest additions 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 exit
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
veewee-0.1.8 | templates/ubuntu-10.10-server-amd64/postinstall.sh |