Files
vms/distros/centos/7/virtualbox.sh
T

10 lines
331 B
Bash
Raw Normal View History

2023-08-22 00:18:02 -05:00
#!/usr/bin/env bash
set -ex
packages="bzip2 dkms kernel-devel kernel-headers make perl gcc"
2023-08-24 23:01:32 -05:00
yum install -y ${packages} # Intentionally not quoted
2023-08-22 00:18:02 -05:00
mount -t auto /home/vagrant/VBoxGuestAdditions.iso /mnt
/mnt/VBoxLinuxAdditions.run install 2>&1 | tee /root/vbox_addon_install.log
umount /mnt
rm /home/vagrant/VBoxGuestAdditions.iso