Update error message since user may have specified connection type via non command line or by default.

This commit is contained in:
Michael DeHaan 2013-07-19 09:09:04 -04:00
parent 5eea4b56fa
commit 8a3ea0774a

View file

@ -82,7 +82,7 @@ class Connection(object):
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
p.communicate()
except OSError:
raise errors.AnsibleError("to use -c ssh with passwords, you must install the sshpass program")
raise errors.AnsibleError("to use the 'ssh' connection type with passwords, you must install the sshpass program")
(self.rfd, self.wfd) = os.pipe()
return ["sshpass", "-d%d" % self.rfd]
return []