summaryrefslogtreecommitdiff
path: root/wheezy/virtualbox.sh
diff options
context:
space:
mode:
Diffstat (limited to 'wheezy/virtualbox.sh')
-rw-r--r--wheezy/virtualbox.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/wheezy/virtualbox.sh b/wheezy/virtualbox.sh
deleted file mode 100644
index 5a91aa6..0000000
--- a/wheezy/virtualbox.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-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)
- cd /tmp
- wget http://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso
- VBOX_ISO=VBoxGuestAdditions_$VBOX_VERSION.iso
- mount -o loop $VBOX_ISO /mnt
- yes|sh /mnt/VBoxLinuxAdditions.run
- umount /mnt
-fi