mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-01 12:40:22 -07:00
Make no_engine the default templating action.
This commit is contained in:
parent
82144fd543
commit
2bbc05185e
3 changed files with 4 additions and 4 deletions
|
@ -545,7 +545,7 @@ class Runner(object):
|
|||
source_data = file(utils.path_dwim(self.basedir, source)).read()
|
||||
resultant = ''
|
||||
try:
|
||||
resultant = utils.template(source_data, inject, self.setup_cache)
|
||||
resultant = utils.template(source_data, inject, self.setup_cache, no_engine=False)
|
||||
except Exception, e:
|
||||
return (host, False, dict(failed=True, msg=str(e)), '')
|
||||
xfered = self._transfer_str(conn, tmp, 'source', resultant)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue