summaryrefslogtreecommitdiff
path: root/lib/ansible/executor
diff options
context:
space:
mode:
authorBrian Coca <brian.coca+git@gmail.com>2017-04-17 15:44:19 -0400
committerBrian Coca <bcoca@users.noreply.github.com>2017-05-11 15:46:14 -0400
commitc50cf22d521d4d2efcdf45283f868f035ff44cef (patch)
tree3885890365bf020d73c8feabffffff88da732b09 /lib/ansible/executor
parent4a5cf0b5c19afe05945da6f68181864058c1ea10 (diff)
downloadansible-c50cf22d521d4d2efcdf45283f868f035ff44cef.tar.gz
deal with null/none connections
fixes #23621 pushed 'connection resolution' to play_context override fieldattribute getter
Diffstat (limited to 'lib/ansible/executor')
-rw-r--r--lib/ansible/executor/task_executor.py24
1 files changed, 4 insertions, 20 deletions
diff --git a/lib/ansible/executor/task_executor.py b/lib/ansible/executor/task_executor.py
index a983c8aec6..0ff1345998 100644
--- a/lib/ansible/executor/task_executor.py
+++ b/lib/ansible/executor/task_executor.py
@@ -20,7 +20,6 @@ from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
import base64
-import sys
import time
import traceback
@@ -722,27 +721,12 @@ class TaskExecutor:
if isinstance(i, string_types) and i.startswith("ansible_") and i.endswith("_interpreter"):
variables[i] = delegated_vars[i]
- conn_type = self._play_context.connection
- if conn_type == 'smart':
- conn_type = 'ssh'
- if sys.platform.startswith('darwin') and self._play_context.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
- conn_type = "paramiko"
- else:
- # see if SSH can support ControlPersist if not use paramiko
- if not check_for_controlpersist(self._play_context.ssh_executable):
- conn_type = "paramiko"
-
- # if someone did `connection: persistent`, default it to using a persistent paramiko connection to avoid problems
- if conn_type == 'persistent':
- self._play_context.connection = 'paramiko'
-
- # if using persistent connections (or the action has set the FORCE_PERSISTENT_CONNECTION attribute to True),
+ # if using persistent paramiko connections (or the action has set the FORCE_PERSISTENT_CONNECTION attribute to True),
# then we use the persistent connection plugion. Otherwise load the requested connection plugin
- elif C.USE_PERSISTENT_CONNECTIONS or getattr(self, 'FORCE_PERSISTENT_CONNECTION', False):
+ if C.USE_PERSISTENT_CONNECTIONS or getattr(self, 'FORCE_PERSISTENT_CONNECTION', False):
conn_type == 'persistent'
+ else:
+ conn_type = self._play_context.connection
connection = self._shared_loader_obj.connection_loader.get(conn_type, self._play_context, self._new_stdin)