Fix the handling a bit
This commit is contained in:
parent
2b2f672e39
commit
5a0cd65561
|
@ -35,11 +35,13 @@ class VMInstance:
|
||||||
try:
|
try:
|
||||||
dom = conn.createXML(xmlconfig, 0)
|
dom = conn.createXML(xmlconfig, 0)
|
||||||
except libvirt.libvirtError:
|
except libvirt.libvirtError:
|
||||||
print('Failed to create domain %s' % self.domuuid)
|
|
||||||
self.zk.set(self.zkey + '/status', 'stop'.encode('ascii'))
|
self.zk.set(self.zkey + '/status', 'stop'.encode('ascii'))
|
||||||
exit(1)
|
print('Failed to create domain %s' % self.domuuid)
|
||||||
|
return None
|
||||||
|
|
||||||
if not self.domuuid in self.thishypervisor.domain_list:
|
if not self.domuuid in self.thishypervisor.domain_list:
|
||||||
self.thishypervisor.domain_list.append(self.domuuid)
|
self.thishypervisor.domain_list.append(self.domuuid)
|
||||||
|
|
||||||
return dom
|
return dom
|
||||||
|
|
||||||
# Stop the VM forcibly
|
# Stop the VM forcibly
|
||||||
|
|
Loading…
Reference in New Issue