Fix opening libvirt esx connection
This commit is contained in:
parent
df92a0be0a
commit
bba1dac0f0
1 changed files with 3 additions and 0 deletions
|
@ -128,6 +128,9 @@ class LibvirtConnection(object):
|
|||
|
||||
if "xen" in stdout:
|
||||
conn = libvirt.open(None)
|
||||
elif "esx" in uri:
|
||||
auth = [[libvirt.VIR_CRED_AUTHNAME, libvirt.VIR_CRED_NOECHOPROMPT], [], None]
|
||||
conn = libvirt.openAuth(uri, auth)
|
||||
else:
|
||||
conn = libvirt.open(uri)
|
||||
|
||||
|
|
Loading…
Reference in a new issue