remove complex_args_hack as it was only needed for Baby JSON

This commit is contained in:
Toshio Kuratomi 2014-10-02 15:29:14 -04:00
commit a6029264b8
2 changed files with 0 additions and 22 deletions

View file

@ -36,8 +36,6 @@ class ActionModule(object):
def run(self, conn, tmp, module_name, module_args, inject, complex_args=None, **kwargs):
''' transfer & execute a module that is not 'copy' or 'template' '''
module_args = self.runner._complex_args_hack(complex_args, module_args)
if self.runner.noop_on_check(inject):
if module_name in [ 'shell', 'command' ]:
return ReturnData(conn=conn, comm_ok=True, result=dict(skipped=True, msg='check mode not supported for %s' % module_name))