mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Preliminary ability to use Jinja2 {{ }} to replace ${foo.bar} in playbooks. Can't use both at the same time per line.
This commit is contained in:
@@ -39,6 +39,6 @@ class ActionModule(object):
|
||||
if 'fail' in args and utils.boolean(args['fail']):
|
||||
result = dict(failed=True, msg=args['msg'])
|
||||
else:
|
||||
result = dict(msg=str(args['msg']))
|
||||
result = dict(msg=args['msg'])
|
||||
|
||||
return ReturnData(conn=conn, result=result)
|
||||
|
||||
Reference in New Issue
Block a user