mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Support state parameter in list_vms command
Support the state parameter in the list_vms command to filter the VM's to list based on their state.
This commit is contained in:
parent
3a635d2d26
commit
a61978aed9
1 changed files with 12 additions and 2 deletions
|
@ -275,13 +275,18 @@ class Virt(object):
|
|||
}
|
||||
return info
|
||||
|
||||
def list_vms(self):
|
||||
def list_vms(self, state=None):
|
||||
self.conn = self.__get_conn()
|
||||
vms = self.conn.find_vm(-1)
|
||||
results = []
|
||||
for x in vms:
|
||||
try:
|
||||
results.append(x.name())
|
||||
if state:
|
||||
vmstate = self.conn.get_status2(x)
|
||||
if vmstate == state:
|
||||
results.append(x.name())
|
||||
else:
|
||||
results.append(x.name())
|
||||
except:
|
||||
pass
|
||||
return results
|
||||
|
@ -395,6 +400,11 @@ def core(module):
|
|||
v = Virt(uri)
|
||||
res = {}
|
||||
|
||||
if state and command=='list_vms':
|
||||
res = v.list_vms(state=state)
|
||||
if type(res) != dict:
|
||||
res = { command: res }
|
||||
return VIRT_SUCCESS, res
|
||||
|
||||
if state:
|
||||
if not guest:
|
||||
|
|
Loading…
Reference in a new issue