Class: Chef::Knife::OvmcliVmRemovevdisk
- Inherits:
-
BaseOraclevmCommand
- Object
- Chef::Knife
- BaseOraclevmCommand
- Chef::Knife::OvmcliVmRemovevdisk
- Defined in:
- lib/chef/knife/ovmcli_vm_removevdisk.rb
Overview
Remove a virtual disk
Instance Method Summary collapse
Methods inherited from BaseOraclevmCommand
#add_vdisk, #add_vnic, #clone_vm, #create_vdisk, #delete_vdisk, #delete_vm, #edit_vm, #fatal_exit, #get_cli_connection, get_common_options, #get_config, #get_host, #get_password, #get_vm, #kill_vm, #list_serverpool, #list_tag, #list_vm, #migrate_vm, #remove_vdisk, #restart_vm, #resume_vm, #send_message, #show_vm_status, #start_vm, #stop_vm, #suspend_vm, #tcp_test_port
Instance Method Details
#run ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/chef/knife/ovmcli_vm_removevdisk.rb', line 19 def run $stdout.sync = true vdiskid = @name_args[0] current=remove_vdisk(vdiskid) Chef::Log.debug("Status = #{current[:status]}. Time = #{current[:time]}. VM Status = #{current[:vmstatus]}.") if current[:status]!="Success" puts "Call to OVM CLI Failed with #{current[:errormsg]}" end end |