More informative error message on failure to resolve tmpdir

pull/3523/merge
Sharif Olorin 11 years ago committed by Michael DeHaan
parent 1a7a779e88
commit 5fcbfa984d

@ -726,7 +726,9 @@ class Runner(object):
# Catch any other failure conditions here; files should never be
# written directly to /.
if rc == '/':
raise errors.AnsibleError('refusing to use / as a temporary directory.')
raise errors.AnsibleError('failed to resolve remote temporary '
'directory from %s: `%s` returned '
'empty string' % (basetmp, cmd))
return rc

Loading…
Cancel
Save