1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #2998 from SirScott/runner-permissions

Ensure the tmp_path is sufficiently open.
This commit is contained in:
Michael DeHaan 2013-05-24 19:52:23 -07:00
commit 27236cf598

View file

@ -662,7 +662,7 @@ class Runner(object):
basetmp = os.path.join('/tmp', basefile)
cmd = 'mkdir -p %s' % basetmp
if self.remote_user != 'root':
if self.remote_user != 'root' or (self.sudo and self.sudo_user != 'root'):
cmd += ' && chmod a+rx %s' % basetmp
cmd += ' && echo %s' % basetmp