Bug Fix
-Corrected the format in case of multiple hosts Remove empty spaces
This commit is contained in:
parent
2984ffdfac
commit
d180e0e05f
1 changed files with 6 additions and 4 deletions
|
@ -13,8 +13,10 @@ class RackhdInventory(object):
|
|||
self._inventory = {}
|
||||
for nodeid in nodeids:
|
||||
self._load_inventory_data(nodeid)
|
||||
inventory = {}
|
||||
for nodeid,info in self._inventory.iteritems():
|
||||
print(json.dumps(self._format_output(nodeid, info)))
|
||||
inventory[nodeid]= (self._format_output(nodeid, info))
|
||||
print(json.dumps(inventory))
|
||||
|
||||
def _load_inventory_data(self, nodeid):
|
||||
info = {}
|
||||
|
@ -33,10 +35,10 @@ class RackhdInventory(object):
|
|||
ipaddress = ''
|
||||
if len(node_info) > 0:
|
||||
ipaddress = node_info[0]['ipAddress']
|
||||
output = {nodeid:{ 'hosts':[ipaddress],'vars':{}}}
|
||||
output = { 'hosts':[ipaddress],'vars':{}}
|
||||
for key,result in info.iteritems():
|
||||
output[nodeid]['vars'][key] = json.loads(result)
|
||||
output[nodeid]['vars']['ansible_ssh_user'] = 'monorail'
|
||||
output['vars'][key] = json.loads(result)
|
||||
output['vars']['ansible_ssh_user'] = 'monorail'
|
||||
except KeyError:
|
||||
pass
|
||||
return output
|
||||
|
|
Loading…
Reference in a new issue