mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
106f4ccc01
commit
6e814566de
2 changed files with 5 additions and 0 deletions
|
@ -573,6 +573,7 @@ class Play(object):
|
|||
mv = task_vars.copy()
|
||||
for t in tokens[1:]:
|
||||
(k,v) = t.split("=", 1)
|
||||
v = utils.splitter.unquote(v)
|
||||
mv[k] = template(self.basedir, v, mv)
|
||||
dirname = self.basedir
|
||||
if original_file:
|
||||
|
|
|
@ -121,3 +121,7 @@
|
|||
include: test_include.yml param={{ test_input }}
|
||||
register: result
|
||||
|
||||
- name: test includes with quoted params
|
||||
include: test_include.yml param="this is a param"
|
||||
register: result
|
||||
|
||||
|
|
Loading…
Reference in a new issue