mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
gluster_volume module parses out additional hostnames provided by "gluster peer status" command [#1405] (#2811)
This commit is contained in:
parent
4017be741a
commit
32574aa358
1 changed files with 8 additions and 0 deletions
|
@ -181,16 +181,24 @@ def get_peers():
|
|||
hostname = None
|
||||
uuid = None
|
||||
state = None
|
||||
shortNames = False
|
||||
for row in out.split('\n'):
|
||||
if ': ' in row:
|
||||
key, value = row.split(': ')
|
||||
if key.lower() == 'hostname':
|
||||
hostname = value
|
||||
shortNames = False
|
||||
if key.lower() == 'uuid':
|
||||
uuid = value
|
||||
if key.lower() == 'state':
|
||||
state = value
|
||||
peers[hostname] = [ uuid, state ]
|
||||
elif row.lower() == 'other names:':
|
||||
shortNames = True
|
||||
elif row != '' and shortNames == True:
|
||||
peers[row] = [ uuid, state ]
|
||||
elif row == '':
|
||||
shortNames = False
|
||||
return peers
|
||||
|
||||
def get_volumes():
|
||||
|
|
Loading…
Reference in a new issue