Index: files/patch-lib_ansible_plugins_action_____init____.py =================================================================== --- files/patch-lib_ansible_plugins_action_____init____.py (nonexistent) +++ files/patch-lib_ansible_plugins_action_____init____.py (working copy) @@ -0,0 +1,21 @@ +--- lib/ansible/plugins/action/__init__.py.orig 2016-01-22 16:26:08 UTC ++++ lib/ansible/plugins/action/__init__.py +@@ -475,8 +475,7 @@ class ActionBase(with_metaclass(ABCMeta, + display.debug("done with _execute_module (%s, %s)" % (module_name, module_args)) + return data + +- def _low_level_execute_command(self, cmd, sudoable=True, in_data=None, +- executable=None, encoding_errors='replace'): ++ def _low_level_execute_command(self, cmd, sudoable=True, in_data=None, executable=C.DEFAULT_EXECUTABLE, encoding_errors='replace'): + ''' + This is the function which executes the low level shell command, which + may be commands to create/remove directories for temporary files, or to +@@ -492,7 +491,7 @@ class ActionBase(with_metaclass(ABCMeta, + ''' + + if executable is not None: +- cmd = executable + ' -c ' + cmd ++ cmd = executable + ' -c ' + pipes.quote(cmd) + + display.debug("_low_level_execute_command(): starting") + if not cmd: Property changes on: files/patch-lib_ansible_plugins_action_____init____.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property