github.com/hashicorp/packer@v1.14.3/examples/hcl/linux/etc/scripts/070-vmware.sh (about)

     1  #!/bin/sh -eux
     2  
     3  case "$PACKER_BUILDER_TYPE" in
     4  vmware-iso|vmware-vmx)
     5      apt-get install -y open-vm-tools;
     6      mkdir /mnt/hgfs;
     7      systemctl enable open-vm-tools
     8      systemctl start open-vm-tools
     9      echo "platform specific vmware.sh executed";
    10  esac