add QubesVM.connected_vms attribute
One more step to core-admin/core-admin-client API compatibility.
This commit is contained in:
parent
51a89a9e77
commit
97724a2e00
@ -310,6 +310,18 @@ class QubesVM(qubesadmin.base.PropertyHolder):
|
|||||||
except AttributeError:
|
except AttributeError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@property
|
||||||
|
def connected_vms(self):
|
||||||
|
''' Return a generator containing all domains connected to the current
|
||||||
|
NetVM.
|
||||||
|
'''
|
||||||
|
for vm in self.app.domains:
|
||||||
|
try:
|
||||||
|
if vm.netvm == self:
|
||||||
|
yield vm
|
||||||
|
except AttributeError:
|
||||||
|
pass
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def klass(self):
|
def klass(self):
|
||||||
''' Qube class '''
|
''' Qube class '''
|
||||||
|
Loading…
Reference in New Issue
Block a user