Commit 92095815 by James Tanner

Fixes #6155 Inject checkmode into synchronize module args

parent 6fe369fc
......@@ -170,6 +170,9 @@ class ActionModule(object):
module_items = ' '.join(['%s=%s' % (k, v) for (k,
v) in options.items()])
if self.runner.noop_on_check(inject):
module_items += " CHECKMODE=True"
return self.runner._execute_module(conn, tmp, 'synchronize',
module_items, inject=inject)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment