Fixes #731 by reinstating variables for inventory scripts

This commit is contained in:
Michael DeHaan 2012-07-30 19:26:46 -04:00
parent fe558f680a
commit da44fb1e43

View file

@ -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)