summaryrefslogtreecommitdiff
path: root/wheezy/virtualbox.sh
diff options
context:
space:
mode:
Diffstat (limited to 'wheezy/virtualbox.sh')
-rw-r--r--wheezy/virtualbox.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/wheezy/virtualbox.sh b/wheezy/virtualbox.sh
new file mode 100644
index 0000000..e4afe25
--- /dev/null
+++ b/wheezy/virtualbox.sh
@@ -0,0 +1,13 @@
+if test -f .vbox_version ; then
+ # 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
+
+ # 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
+fi