Create the tempdir in the accelerate module if it doesn't exist
Fixes #6047
This commit is contained in:
parent
52e809fcb7
commit
e215f564c5
1 changed files with 7 additions and 1 deletions
|
@ -391,7 +391,13 @@ class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler):
|
||||||
final_path = None
|
final_path = None
|
||||||
if 'user' in data and data.get('user') != getpass.getuser():
|
if 'user' in data and data.get('user') != getpass.getuser():
|
||||||
vv("the target user doesn't match this user, we'll move the file into place via sudo")
|
vv("the target user doesn't match this user, we'll move the file into place via sudo")
|
||||||
(fd,out_path) = tempfile.mkstemp(prefix='ansible.', dir=os.path.expanduser('~/.ansible/tmp/'))
|
tmp_path = os.path.expanduser('~/.ansible/tmp/')
|
||||||
|
if not os.path.exists(tmp_path):
|
||||||
|
try:
|
||||||
|
os.makedirs(tmp_path, 0700)
|
||||||
|
except:
|
||||||
|
return dict(failed=True, msg='could not create a temporary directory at %s' % tmp_path)
|
||||||
|
(fd,out_path) = tempfile.mkstemp(prefix='ansible.', dir=tmp_path)
|
||||||
out_fd = os.fdopen(fd, 'w', 0)
|
out_fd = os.fdopen(fd, 'w', 0)
|
||||||
final_path = data['out_path']
|
final_path = data['out_path']
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue