summaryrefslogtreecommitdiff
path: root/definitions/wheezy/virtualbox.sh
diff options
context:
space:
mode:
authorkwadronaut <kwadronaut@leap.se>2014-05-27 12:35:45 +0200
committerkwadronaut <kwadronaut@leap.se>2014-05-27 12:35:45 +0200
commitdd8613573ff5b0722bb2fbd31f2a62627f54c2e9 (patch)
treed24ddddc1433e3323f186f13c6032e966d128627 /definitions/wheezy/virtualbox.sh
parenteff8d0e0ca256459a7b1f02113b1456bdc5bdd7f (diff)
parenta056852708ff1d3bcc84ae207c9c3fbbd97e1ba0 (diff)
Merge branch 'master' of github.com:leapcode/leap-vagrant
Conflicts: definitions/wheezy/cleanup-virtualbox.sh definitions/wheezy/definition.rb
Diffstat (limited to 'definitions/wheezy/virtualbox.sh')
-rw-r--r--definitions/wheezy/virtualbox.sh28
1 files changed, 24 insertions, 4 deletions
diff --git a/definitions/wheezy/virtualbox.sh b/definitions/wheezy/virtualbox.sh
index 5a91aa6..818ca30 100644
--- a/definitions/wheezy/virtualbox.sh
+++ b/definitions/wheezy/virtualbox.sh
@@ -1,15 +1,35 @@
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
+ if test -f /etc/init.d/virtualbox-ose-guest-utils ; then
+ /etc/init.d/virtualbox-ose-guest-utils stop
+ fi
+
rmmod vboxguest
aptitude -y purge virtualbox-ose-guest-x11 virtualbox-ose-guest-dkms virtualbox-ose-guest-utils
+ # Install dkms for dynamic compiles
+
+ apt-get install -y dkms
+
+ # If libdbus is not installed, virtualbox will not autostart
+ apt-get -y install --no-install-recommends libdbus-1-3
+
# 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_VERSION=$(cat .vbox_version)
VBOX_ISO=VBoxGuestAdditions_$VBOX_VERSION.iso
mount -o loop $VBOX_ISO /mnt
yes|sh /mnt/VBoxLinuxAdditions.run
umount /mnt
+
+ # Start the newly build driver
+ /etc/init.d/vboxadd start
+
+ # Make a temporary mount point
+ mkdir /tmp/veewee-validation
+
+ # Test mount the veewee-validation
+ mount -t vboxsf veewee-validation /tmp/veewee-validation
+
+ rm $VBOX_ISO
+
fi