Commit 99d57966 by Matthew Williams Committed by Michael DeHaan

support for quotes strings in command module (via posix=False), related fixes to…

support for quotes strings in command module (via posix=False), related fixes to keep other things from breaking
parent f82cc59d
......@@ -370,8 +370,8 @@ class PlayBook(object):
if type(vars_files) != list:
raise errors.AnsibleError("vars_files must be a list")
for host in host_list:
cache_vars = SETUP_CACHE.get(host,{})
SETUP_CACHE[host] = {}
cache_vars = SETUP_CACHE.get(host,{})
SETUP_CACHE[host] = cache_vars
for filename in vars_files:
if type(filename) == list:
# loop over all filenames, loading the first one, and failing if # none found
......
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