1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-02-15 05:57:23 +03:00

M #-: Decrypt Virtual Machine

so we have the proper descrypted password for context info
This commit is contained in:
Tino Vazquez 2022-03-01 18:53:28 +01:00
parent 3c59406c30
commit 0dd55399a5
No known key found for this signature in database
GPG Key ID: 14201E424D02047E

View File

@ -97,7 +97,12 @@ module VCenterDriver
def self.one_item(the_class, id, exit_if_fail = true)
item = the_class.new_with_id(id, client)
rc = item.info
rc=nil
if the_class == OpenNebula::VirtualMachine
rc = item.info(true)
else
rc = item.info
end
return_if_error(rc, item, exit_if_fail)
end