Merge pull request #1633 from dhozac/root-remote_tmp
Use the configured remote_tmp even for root
This commit is contained in:
commit
3e9a408682
1 changed files with 1 additions and 3 deletions
|
@ -491,9 +491,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.remote_user == 'root':
|
||||
basetmp = os.path.join('/var/tmp', basefile)
|
||||
elif self.sudo and self.sudo_user != 'root':
|
||||
if self.sudo and self.sudo_user != 'root':
|
||||
basetmp = os.path.join('/tmp', basefile)
|
||||
|
||||
cmd = 'mkdir -p %s' % basetmp
|
||||
|
|
Loading…
Reference in a new issue