1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
require 'rbvmomi'
require 'rbvmomi/trollop'
opts = Trollop.options do
banner <<-EOS
Example 1 from the README: Power on a VM.
Usage:
readme-1.rb [options] VM name
VIM connection options:
EOS
rbvmomi_connection_opts
text <<-EOS
VM location options:
EOS
rbvmomi_datacenter_opt
text <<-EOS
Other options:
EOS
end
Trollop.die("must specify host") unless opts[:host]
vm_name = ARGV[0] or abort "must specify VM name"
vim = RbVmomi::VIM.connect opts
dc = vim.serviceInstance.find_datacenter(opts[:datacenter]) or fail "datacenter not found"
vm = dc.find_vm(vm_name) or fail "VM not found"
vm.PowerOnVM_Task.wait_for_completion
|