Template template module source.

pull/4420/head
Jeroen Hoekx 2012-04-18 14:26:33 +02:00
parent b678cf783c
commit 22ff8282a8
1 changed files with 4 additions and 0 deletions

View File

@ -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)