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 #2322 from bcoca/remote_tmp_override

added check for starting $HOME for remote_tmp so as to non root sudo override
This commit is contained in:
Michael DeHaan 2013-03-06 21:07:49 -08:00
commit 969edabdbb

View file

@ -573,7 +573,7 @@ class Runner(object):
basefile = 'ansible-%s-%s' % (time.time(), random.randint(0, 2**48))
basetmp = os.path.join(C.DEFAULT_REMOTE_TMP, basefile)
if self.sudo and self.sudo_user != 'root':
if self.sudo and self.sudo_user != 'root' and basetmp.startswith('$HOME'):
basetmp = os.path.join('/tmp', basefile)
cmd = 'mkdir -p %s' % basetmp