Commit 74a537ed by Brian Coca

Merge pull request #11140 from RadishTheHut/connection_info

Fix for task_executor on OS X
parents 3e2e81d8 a899f8f0
......@@ -380,7 +380,7 @@ class TaskExecutor:
conn_type = self._connection_info.connection
if conn_type == 'smart':
conn_type = 'ssh'
if sys.platform.startswith('darwin') and self._connection_info.remote_pass:
if sys.platform.startswith('darwin') and self._connection_info.password:
# due to a current bug in sshpass on OSX, which can trigger
# a kernel panic even for non-privileged users, we revert to
# paramiko on that OS when a SSH password is specified
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment