Commit 11b72df2 by James Cammarata

Merge pull request #7667 from alexclear/devel

ansible-pull should respect inventory file settings because, say, Python...
parents 7483acde bb1941a9
......@@ -150,7 +150,10 @@ def main(args):
now = datetime.datetime.now()
print >>sys.stderr, now.strftime("Starting ansible-pull at %F %T")
if not options.inventory:
inv_opts = 'localhost,'
else:
inv_opts = options.inventory
limit_opts = 'localhost:%s:127.0.0.1' % hostname
repo_opts = "name=%s dest=%s" % (options.url, options.dest)
......
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