Sha256: 52f14eda86919ed1bd1db1a6ff7bc152a92b1895608a55e10986cdb4500639bb

Contents?: true

Size: 863 Bytes

Versions: 24

Compression:

Stored size: 863 Bytes

Contents

#!/bin/bash

if [ -f .veewee_params ]
then
  . .veewee_params
fi

# 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 -s /bin/bash -N vagrant

# 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
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

24 entries across 12 versions & 1 rubygems

Version Path
veewee-0.5.0.alpha4 templates/ubuntu-10.10-server-amd64/vagrant.sh
veewee-0.5.0.alpha4 templates/ubuntu-10.04.3-server-amd64/vagrant.sh
veewee-0.5.0.alpha3 templates/ubuntu-10.10-server-amd64/vagrant.sh
veewee-0.5.0.alpha3 templates/ubuntu-10.04.3-server-amd64/vagrant.sh
veewee-0.5.0.alpha2 templates/ubuntu-10.04.3-server-amd64/vagrant.sh
veewee-0.5.0.alpha2 templates/ubuntu-10.10-server-amd64/vagrant.sh
veewee-0.5.0.alpha1 templates/ubuntu-10.10-server-amd64/vagrant.sh
veewee-0.5.0.alpha1 templates/ubuntu-10.04.3-server-amd64/vagrant.sh
veewee-0.4.5.1 templates/ubuntu-10.04.3-server-amd64/vagrant.sh
veewee-0.4.5.1 templates/ubuntu-10.10-server-amd64/vagrant.sh
veewee-0.4.5 templates/ubuntu-10.10-server-amd64/vagrant.sh
veewee-0.4.5 templates/ubuntu-10.04.3-server-amd64/vagrant.sh
veewee-0.4.5.pre1 templates/ubuntu-10.04.3-server-amd64/vagrant.sh
veewee-0.4.5.pre1 templates/ubuntu-10.10-server-amd64/vagrant.sh
veewee-0.4.4 templates/ubuntu-10.10-server-amd64/vagrant.sh
veewee-0.4.4 templates/ubuntu-10.04.3-server-amd64/vagrant.sh
veewee-0.4.3 templates/ubuntu-10.10-server-amd64/vagrant.sh
veewee-0.4.3 templates/ubuntu-10.04.3-server-amd64/vagrant.sh
veewee-0.4.2 templates/ubuntu-10.10-server-amd64/vagrant.sh
veewee-0.4.2 templates/ubuntu-10.04.3-server-amd64/vagrant.sh