Sha256: 8edfba3e37bdfd11abf8e0c27269e822956ec1bd295e4ecc294a7e1fa481b8bf
Contents?: true
Size: 428 Bytes
Versions: 48
Compression:
Stored size: 428 Bytes
Contents
#!/bin/bash if [ -f .veewee_params ] then . .veewee_params fi # Installing the virtualbox guest additions apt-get -y install dkms VBOX_VERSION=$(cat /home/vagrant/.vbox_version) cd /tmp wget http://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso mount -o loop VBoxGuestAdditions_$VBOX_VERSION.iso /mnt sh /mnt/VBoxLinuxAdditions.run umount /mnt rm VBoxGuestAdditions_$VBOX_VERSION.iso
Version data entries
48 entries across 12 versions & 1 rubygems