Fixes #731 by reinstating variables for inventory scripts
This commit is contained in:
parent
fe558f680a
commit
da44fb1e43
1 changed files with 7 additions and 0 deletions
|
@ -163,6 +163,13 @@ class Inventory(object):
|
|||
)
|
||||
(out, err) = cmd.communicate()
|
||||
results = utils.parse_json(out)
|
||||
|
||||
# FIXME: this is a bit redundant with host.py and should share code
|
||||
results['inventory_hostname'] = hostname
|
||||
results['inventory_hostname_short'] = hostname.split('.')[0]
|
||||
groups = [ g.name for g in host.get_groups() if g.name != 'all' ]
|
||||
results['group_names'] = sorted(groups)
|
||||
|
||||
return results
|
||||
|
||||
host = self.get_host(hostname)
|
||||
|
|
Loading…
Reference in a new issue