2023-08-22 00:18:02 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
set -ex
|
|
|
|
|
|
2023-12-06 08:21:32 -08:00
|
|
|
packages=(gcc make bzip2 kernel-devel elfutils-libelf-devel)
|
|
|
|
|
dnf install -y "${packages[@]}"
|
2023-08-22 00:18:02 -05:00
|
|
|
mount -t auto /home/vagrant/VBoxGuestAdditions.iso /mnt
|
2023-08-24 23:01:32 -05:00
|
|
|
/mnt/VBoxLinuxAdditions.run install --nox11 2>&1 | tee /root/vbox_addon_install.log
|
2023-08-22 00:18:02 -05:00
|
|
|
umount /mnt
|
|
|
|
|
rm /home/vagrant/VBoxGuestAdditions.iso
|