diff --git a/lib/ansible/parsing/mod_args.py b/lib/ansible/parsing/mod_args.py index 0974630d8f9..96fb583a71d 100644 --- a/lib/ansible/parsing/mod_args.py +++ b/lib/ansible/parsing/mod_args.py @@ -114,11 +114,6 @@ class ModuleArgsParser: to shell/command being treated special and nothing else ''' - # don't handle non shell/command modules in this function - # TODO: in terms of the whole app, should 'raw' also fit here? - if action not in ['shell', 'command']: - return (action, args) - # the shell module really is the command module with an additional # parameter if action == 'shell':