summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2016-03-25 09:25:19 -0700
committerToshio Kuratomi <toshio@fedoraproject.org>2016-03-25 09:25:19 -0700
commite2f5762232686efbdcbca0141a61224c33f07d3d (patch)
treec73b4564ac8c1bc62c39828f6fc917deb75a9664
parentf4eb9aac241f3664b2b051340b677c15bf597198 (diff)
downloadansible-synchronize-connection-vs-play_context.tar.gz
Use _connection instead of _play_context for information about the connectionsynchronize-connection-vs-play_context
If we're not delegating then we change _connection into a local connection midway through the file but we don't change _play_context.connection (no need to alter that). When we later check it in process_remote() we need to know the actual connection, not the connection that we thought we were going to use at the start of run(). So we have to use _connection.transport in process_remote(). The rest of the places could use either one (because we have not yet changed to a local connection) but we go ahead and switch those to _connection.transport as well to avoid confusion in the future. Fixes https://github.com/ansible/ansible-modules-core/issues/3136
-rw-r--r--lib/ansible/plugins/action/synchronize.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/ansible/plugins/action/synchronize.py b/lib/ansible/plugins/action/synchronize.py
index 02771e3fcc..36c1d1ca05 100644
--- a/lib/ansible/plugins/action/synchronize.py
+++ b/lib/ansible/plugins/action/synchronize.py
@@ -81,7 +81,7 @@ class ActionModule(ActionBase):
is a different host (for instance, an ssh tunnelled port or an
alternative ssh port to a vagrant host.)
"""
- transport = self._play_context.connection
+ transport = self._connection.transport
if host not in C.LOCALHOST or transport != "local":
if port_matches_localhost_port and host in C.LOCALHOST:
self._task.args['_substitute_controller'] = True
@@ -144,13 +144,13 @@ class ActionModule(ActionBase):
result = super(ActionModule, self).run(tmp, task_vars)
- # self._play_context.connection accounts for delegate_to so
+ # self._connection accounts for delegate_to so
# remote_transport is the transport ansible thought it would need
# between the controller and the delegate_to host or the controller
# and the remote_host if delegate_to isn't set.
remote_transport = False
- if self._play_context.connection != 'local':
+ if self._connection.transport != 'local':
remote_transport = True
try:
@@ -160,9 +160,9 @@ class ActionModule(ActionBase):
# ssh paramiko and local are fully supported transports. Anything
# else only works with delegate_to
- if delegate_to is None and self._play_context.connection not in ('ssh', 'paramiko', 'smart', 'local'):
+ if delegate_to is None and self._connection.transport not in ('ssh', 'paramiko', 'local'):
result['failed'] = True
- result['msg'] = "synchronize uses rsync to function. rsync needs to connect to the remote host via ssh or a direct filesystem copy. This remote host is being accessed via %s instead so it cannot work." % self._play_context.connection
+ result['msg'] = "synchronize uses rsync to function. rsync needs to connect to the remote host via ssh or a direct filesystem copy. This remote host is being accessed via %s instead so it cannot work." % self._connection.transport
return result
use_ssh_args = self._task.args.pop('use_ssh_args', None)