Sha256: 8a7153663e38c11320d911d5997d42c207034b86d0bd90286bb021ca18664603
Contents?: true
Size: 456 Bytes
Versions: 24
Compression:
Stored size: 456 Bytes
Contents
#!/bin/bash if [ -f .veewee_params ] then . .veewee_params fi # Installing the virtualbox guest additions if test -f /home/veewee/.vbox_version then VBOX_VERSION=$(cat /home/veewee/.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 fi
Version data entries
24 entries across 12 versions & 1 rubygems