Commit 83481b32 by Michael DeHaan

Merge pull request #3657 from zqad/devel

Fix playbook-local host_vars when running from .
parents 4db413db 16efb457
...@@ -40,7 +40,7 @@ class VarsModule(object): ...@@ -40,7 +40,7 @@ class VarsModule(object):
""" main body of the plugin, does actual loading """ """ main body of the plugin, does actual loading """
inventory = self.inventory inventory = self.inventory
self.pb_basedir = inventory.playbook_basedir() self.pb_basedir = os.path.abspath(inventory.playbook_basedir())
# sort groups by depth so deepest groups can override the less deep ones # sort groups by depth so deepest groups can override the less deep ones
groupz = sorted(inventory.groups_for_host(host.name), key=lambda g: g.depth) groupz = sorted(inventory.groups_for_host(host.name), key=lambda g: g.depth)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment