10 lines
314 B
Bash
10 lines
314 B
Bash
#!/usr/bin/env bash
|
|||
|
|
set -ex
|
||
|
|
|
||
|
|
packages=(gcc make bzip2 kernel-devel elfutils-libelf-devel)
|
||
|
|
dnf install -y "${packages[@]}"
|
||
|
|
mount -t auto /home/vagrant/VBoxGuestAdditions.iso /mnt
|
||
|
|
/mnt/VBoxLinuxAdditions.run install --nox11 2>&1 | tee /root/vbox_addon_install.log
|
||
|
|
umount /mnt
|
||
|
|
rm /home/vagrant/VBoxGuestAdditions.iso
|