Skip to content

Commit

Permalink
Merge pull request #747 from jasonberanek/esxi-template-update
Browse files Browse the repository at this point in the history
Fix ESXi shutdown command
  • Loading branch information
mpapis committed Sep 30, 2014
2 parents f04b285 + 8326aa3 commit b3c03a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/VMware-ESXi-5.0u2-x86_64/definition.rb
Expand Up @@ -20,7 +20,7 @@
:ssh_login_timeout => "10000000", :ssh_user => "root", :ssh_password => "vagrant", :ssh_key => "",
:ssh_host_port => "7222", :ssh_guest_port => "22",
:sudo_cmd => "echo '%p'|sudo -S sh '%f'",
:shutdown_cmd => "/bin/halt",
:shutdown_cmd => "poweroff",
:postinstall_files => ["vagrant_key.py", "vnc_enable.sh" ], :postinstall_timeout => 10000,
:vmfusion => { :vm_options => { 'enable_hypervisor_support' => true, 'download_tools' => false } }
})
2 changes: 1 addition & 1 deletion templates/VMware-ESXi-5.1-x86_64/definition.rb
Expand Up @@ -20,7 +20,7 @@
:ssh_login_timeout => "10000000", :ssh_user => "root", :ssh_password => "vagrant", :ssh_key => "",
:ssh_host_port => "7222", :ssh_guest_port => "22",
:sudo_cmd => "echo '%p'|sudo -S sh '%f'",
:shutdown_cmd => "/bin/halt",
:shutdown_cmd => "poweroff",
:postinstall_files => ["vagrant_key.py", "vnc_enable.sh" ], :postinstall_timeout => 10000,
# Enable Hypervisor support to allow 64-bit guest VMs
:vmfusion => { :vm_options => { 'enable_hypervisor_support' => true, 'download_tools' => false } }
Expand Down

0 comments on commit b3c03a3

Please sign in to comment.