mirror of
https://github.com/elasticdog/packer-arch.git
synced 2026-01-23 02:14:40 +00:00
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.
13 lines
522 B
Bash
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
|