Sha256: ba51d3d5ae26866a9129a0ea59dc1c473951ac11af08eeacf7fc2573df9f13c1

Contents?: true

Size: 698 Bytes

Versions: 12

Compression:

Stored size: 698 Bytes

Contents

#!/bin/bash

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

# Without libdbus virtualbox would not start automatically after compile
apt-get -y install --no-install-recommends libdbus-1-3

# The netboot installs the VirtualBox support (old) so we have to remove it
/etc/init.d/virtualbox-ose-guest-utils stop
rmmod vboxguest
aptitude -y purge virtualbox-ose-guest-x11 virtualbox-ose-guest-dkms virtualbox-ose-guest-utils
aptitude -y install dkms

# Install the VirtualBox guest additions
VBOX_VERSION=$(cat /home/vagrant/.vbox_version)
VBOX_ISO=VBoxGuestAdditions_$VBOX_VERSION.iso
mount -o loop $VBOX_ISO /mnt
yes|sh /mnt/VBoxLinuxAdditions.run
umount /mnt

#Cleanup VirtualBox
rm $VBOX_ISO

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
veewee-0.5.0.alpha4 templates/ubuntu-12.04.2-server-amd64/virtualbox.sh
veewee-0.5.0.alpha3 templates/ubuntu-12.04.2-server-amd64/virtualbox.sh
veewee-0.5.0.alpha2 templates/ubuntu-12.04.2-server-amd64/virtualbox.sh
veewee-0.5.0.alpha1 templates/ubuntu-12.04.2-server-amd64/virtualbox.sh
veewee-0.4.5.1 templates/ubuntu-12.04.2-server-amd64/virtualbox.sh
veewee-0.4.5 templates/ubuntu-12.04.2-server-amd64/virtualbox.sh
veewee-0.4.5.pre1 templates/ubuntu-12.04.2-server-amd64/virtualbox.sh
veewee-0.4.4 templates/ubuntu-12.04.2-server-amd64/virtualbox.sh
veewee-0.4.3 templates/ubuntu-12.04.2-server-amd64/virtualbox.sh
veewee-0.4.2 templates/ubuntu-12.04.2-server-amd64/virtualbox.sh
veewee-0.4.1 templates/ubuntu-12.04.2-server-amd64/virtualbox.sh
veewee-0.4.0 templates/ubuntu-12.04.2-server-amd64/virtualbox.sh