Merge pull request #1633 from dhozac/root-remote_tmp
Use the configured remote_tmp even for rootpull/4420/head
commit
3e9a408682
|
@ -491,9 +491,7 @@ class Runner(object):
|
||||||
|
|
||||||
basefile = 'ansible-%s-%s' % (time.time(), random.randint(0, 2**48))
|
basefile = 'ansible-%s-%s' % (time.time(), random.randint(0, 2**48))
|
||||||
basetmp = os.path.join(C.DEFAULT_REMOTE_TMP, basefile)
|
basetmp = os.path.join(C.DEFAULT_REMOTE_TMP, basefile)
|
||||||
if self.remote_user == 'root':
|
if self.sudo and self.sudo_user != 'root':
|
||||||
basetmp = os.path.join('/var/tmp', basefile)
|
|
||||||
elif self.sudo and self.sudo_user != 'root':
|
|
||||||
basetmp = os.path.join('/tmp', basefile)
|
basetmp = os.path.join('/tmp', basefile)
|
||||||
|
|
||||||
cmd = 'mkdir -p %s' % basetmp
|
cmd = 'mkdir -p %s' % basetmp
|
||||||
|
|
Loading…
Reference in New Issue