Make no_engine the default templating action.

This commit is contained in:
Jeroen Hoekx 2012-05-09 16:13:20 +02:00
parent 82144fd543
commit 2bbc05185e
3 changed files with 4 additions and 4 deletions

View file

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