Use the configured remote_tmp even for root

This commit is contained in:
Daniel Hokka Zakrisson 2012-11-16 23:42:40 +01:00
parent 0ab3bd0034
commit 021172f78d

View file

@ -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