packer-arch/scripts/install-vmware.sh
Christian Kotte 090a1cb9a6 Improve script output
The '==>' prefix is used by pacstrap, pacman, and mkinitcpio. A new
prefix is needed to better differentiate the output of the script from
the output of the programs mentioned above.
Also adding more output to the different steps helps during troubleshooting.
2020-08-13 15:53:08 -07:00

13 lines
522 B
Bash

#!/usr/bin/bash -x
# Open VM Tools
# https://wiki.archlinux.org/index.php/VMware
# https://wiki.archlinux.org/index.php/VMware/Installing_Arch_as_a_guest
echo ">>>> install-virtualbox.sh: Installing Open-VM-Tools and NFS utilities.."
/usr/bin/pacman -S --noconfirm linux-headers open-vm-tools nfs-utils
echo ">>>> install-virtualbox.sh: Enabling Open-VM-Tools service.."
/usr/bin/systemctl enable vmtoolsd.service
echo ">>>> install-virtualbox.sh: Enabling RPC Bind service.."
/usr/bin/systemctl enable rpcbind.service