Merge pull request #11764 from lpirl/devel_v2

fixes remote code execution for su/sudo with strict remote umasks
This commit is contained in:
James Cammarata 2015-08-11 22:30:44 -04:00
commit e0b074000e
2 changed files with 8 additions and 3 deletions

View file

@ -164,7 +164,7 @@ class ActionBase:
tmp_mode = None
if self._play_context.remote_user != 'root' or self._play_context.become and self._play_context.become_user != 'root':
tmp_mode = 'a+rx'
tmp_mode = 0755
cmd = self._connection._shell.mkdtemp(basefile, use_system_tmp, tmp_mode)
self._display.debug("executing _low_level_execute_command to create the tmp path")