Skip to content

Commit

Permalink
Fix 'vmware-ovf' --> 'vmware-vmx'. Closes #230
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian C. Dunn committed Jul 7, 2014
2 parents b993f4e + fa82c38 commit 62dd760
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packer/scripts/common/vmtools.sh
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
#!/bin/bash

case "$PACKER_BUILDER_TYPE" in
case "$PACKER_BUILDER_TYPE" in

virtualbox-iso|virtualbox-ovf)
virtualbox-iso|virtualbox-ovf)
mkdir /tmp/vbox
VER=$(cat /home/vagrant/.vbox_version)
mount -o loop /home/vagrant/VBoxGuestAdditions_$VER.iso /tmp/vbox
mount -o loop /home/vagrant/VBoxGuestAdditions_$VER.iso /tmp/vbox
sh /tmp/vbox/VBoxLinuxAdditions.run
umount /tmp/vbox
rmdir /tmp/vbox
rm /home/vagrant/*.iso
;;

vmware-iso|vmware-ovf)
vmware-iso|vmware-vmx)
mkdir /tmp/vmfusion
mkdir /tmp/vmfusion-archive
mount -o loop /home/vagrant/linux.iso /tmp/vmfusion
Expand Down

0 comments on commit 62dd760

Please sign in to comment.