set script command itself to be sudable and not use the chmod sudoable settings as it can
ignore sudo settings for script when become_user is not root fixes #11902
This commit is contained in:
parent
3d481ab4ff
commit
c08305a31f
1 changed files with 2 additions and 2 deletions
|
@ -83,8 +83,8 @@ class ActionModule(ActionBase):
|
|||
# add preparation steps to one ssh roundtrip executing the script
|
||||
env_string = self._compute_environment_string()
|
||||
script_cmd = ' '.join([env_string, tmp_src, args])
|
||||
|
||||
result = self._low_level_execute_command(cmd=script_cmd, tmp=None, sudoable=sudoable)
|
||||
|
||||
result = self._low_level_execute_command(cmd=script_cmd, tmp=None, sudoable=True)
|
||||
|
||||
# clean up after
|
||||
if tmp and "tmp" in tmp and not C.DEFAULT_KEEP_REMOTE_FILES:
|
||||
|
|
Loading…
Reference in a new issue