More informative error message on failure to resolve tmpdir

This commit is contained in:
Sharif Olorin 2013-07-16 09:30:20 +10:00 committed by Michael DeHaan
parent 1a7a779e88
commit 5fcbfa984d

View file

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