Sha256: 1461adf5a37863b8b457c1af68502967b2eea5d3d85d25165b56d375e9ad3fc1

Contents?: true

Size: 783 Bytes

Versions: 4

Compression:

Stored size: 783 Bytes

Contents

# Installing the virtualbox guest additions
if test -f /home/veewee/.vbox_version
then
# postinstall.sh created from Mitchell's official lucid32/64 baseboxes
date > /etc/vagrant_box_build_time

# Create the user vagrant with password vagrant

useradd -G admin -p $(perl -e'print crypt("vagrant", "vagrant")') -m -N vagrant

# 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
chmod 600 /home/vagrant/.ssh/authorized_keys
chown -R vagrant /home/vagrant/.ssh

# Install NFS client
apt-get -y install nfs-common

# Zero out the free space to save space in the final image:
dd if=/dev/zero of=/EMPTY bs=1M
rm -f /EMPTY

fi

Version data entries

4 entries across 2 versions & 1 rubygems

Version Path
veewee-0.3.0.alpha2 templates/ubuntu-10.04.3-server-amd64/vagrant.sh
veewee-0.3.0.alpha2 templates/ubuntu-10.10-server-amd64/vagrant.sh
veewee-0.3.0.alpha1 templates/ubuntu-10.04.3-server-amd64/vagrant.sh
veewee-0.3.0.alpha1 templates/ubuntu-10.10-server-amd64/vagrant.sh