Files

10 lines
309 B
Bash
Raw Permalink Normal View History

2023-08-22 00:18:02 -05:00
#!/usr/bin/env bash
set -ex
2023-12-06 08:21:32 -08:00
packages=(bzip2 dkms kernel-devel kernel-headers make perl gcc)
yum install -y "${packages[@]}"
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