bugfix for extra-vars
This commit is contained in:
parent
5764ccdb0e
commit
c742b8eb0b
1 changed files with 1 additions and 1 deletions
|
@ -450,7 +450,7 @@ class PlayBook(object):
|
|||
SETUP_CACHE[host] = result
|
||||
|
||||
if self.extra_vars:
|
||||
extra_vars = utils.parse_kv(shlex.split(self.extra_vars))
|
||||
extra_vars = utils.parse_kv(self.extra_vars)
|
||||
for h in self.host_list:
|
||||
try:
|
||||
SETUP_CACHE[h].update(extra_vars)
|
||||
|
|
Loading…
Reference in a new issue