Make no_engine the default templating action.

pull/603/head
Jeroen Hoekx 12 years ago
parent 82144fd543
commit 2bbc05185e

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

@ -243,7 +243,7 @@ def varReplace(raw, vars):
return ''.join(done)
def template(text, vars, setup_cache, no_engine=False):
def template(text, vars, setup_cache, no_engine=True):
''' run a text buffer through the templating engine '''
vars = vars.copy()
text = varReplace(str(text), vars)

@ -140,7 +140,7 @@ class TestUtils(unittest.TestCase):
'who': 'world',
}
res = ansible.utils.template(template, vars, {})
res = ansible.utils.template(template, vars, {}, no_engine=False)
assert res == 'hello world'
@ -150,6 +150,6 @@ class TestUtils(unittest.TestCase):
'who': 'world',
}
res = ansible.utils.template(template, vars, {})
res = ansible.utils.template(template, vars, {}, no_engine=False)
assert res == 'hello world\n'

Loading…
Cancel
Save