Merge pull request #724 from goozbach/inventory_short
added inventory_hostname_short variblepull/4420/head
commit
3ad07d5965
|
@ -163,9 +163,6 @@ class Inventory(object):
|
||||||
)
|
)
|
||||||
(out, err) = cmd.communicate()
|
(out, err) = cmd.communicate()
|
||||||
results = utils.parse_json(out)
|
results = utils.parse_json(out)
|
||||||
results['inventory_hostname'] = hostname
|
|
||||||
groups = [ g.name for g in host.get_groups() if g.name != 'all' ]
|
|
||||||
results['group_names'] = sorted(groups)
|
|
||||||
return results
|
return results
|
||||||
|
|
||||||
host = self.get_host(hostname)
|
host = self.get_host(hostname)
|
||||||
|
|
|
@ -59,6 +59,7 @@ class Host(object):
|
||||||
results.update(group.get_variables())
|
results.update(group.get_variables())
|
||||||
results.update(self.vars)
|
results.update(self.vars)
|
||||||
results['inventory_hostname'] = self.name
|
results['inventory_hostname'] = self.name
|
||||||
|
results['inventory_hostname_short'] = self.name.split('.')[0]
|
||||||
groups = self.get_groups()
|
groups = self.get_groups()
|
||||||
results['group_names'] = sorted([ g.name for g in groups if g.name != 'all'])
|
results['group_names'] = sorted([ g.name for g in groups if g.name != 'all'])
|
||||||
return results
|
return results
|
||||||
|
|
Loading…
Reference in New Issue