From 021172f78dc3fe07356c24d565ae2e0ec81ae30c Mon Sep 17 00:00:00 2001 From: Daniel Hokka Zakrisson Date: Fri, 16 Nov 2012 23:42:40 +0100 Subject: [PATCH] Use the configured remote_tmp even for root --- lib/ansible/runner/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/ansible/runner/__init__.py b/lib/ansible/runner/__init__.py index b41d28248d..93924d402c 100644 --- a/lib/ansible/runner/__init__.py +++ b/lib/ansible/runner/__init__.py @@ -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