mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Template template module source.
This commit is contained in:
parent
b678cf783c
commit
22ff8282a8
1 changed files with 4 additions and 0 deletions
|
@ -463,6 +463,10 @@ class Runner(object):
|
|||
else:
|
||||
metadata = '~/.ansible/setup'
|
||||
|
||||
# apply templating to source argument
|
||||
inject = self.setup_cache.get(conn.host,{})
|
||||
source = utils.template(source, inject)
|
||||
|
||||
# first copy the source template over
|
||||
temppath = tmp + os.path.split(source)[-1]
|
||||
conn.put_file(utils.path_dwim(self.basedir, source), temppath)
|
||||
|
|
Loading…
Reference in a new issue