mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-19 06:40:21 -07:00
Merge remote branch 'public/master'
This commit is contained in:
commit
eb67a91c57
1 changed files with 4 additions and 4 deletions
|
@ -105,10 +105,10 @@ class PlayBook(object):
|
|||
if x.find("=") != -1:
|
||||
(k,v) = x.split("=")
|
||||
inject_vars[k] = v
|
||||
included = utils.template_from_file(path, inject_vars)
|
||||
included = utils.parse_yaml(included)
|
||||
for x in included:
|
||||
new_tasks.append(x)
|
||||
included = utils.template_from_file(path, inject_vars)
|
||||
included = utils.parse_yaml(included)
|
||||
for x in included:
|
||||
new_tasks.append(x)
|
||||
|
||||
# *****************************************************
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue