Fix SSH reconnection for docker role in Ansible 2.3
In ansible 2.3, the path to SSH persistent connection sockets was changed to use a SHA1 hash of the connection parameters, so the workaround to force a reconnection was broken. This change removes all ControlPath sockets from the ansible control host.
This commit is contained in:
parent
8fc8937148
commit
ce60327b60
@ -17,6 +17,9 @@
|
|||||||
# After adding the user to the docker group, we need to log out and in again to
|
# After adding the user to the docker group, we need to log out and in again to
|
||||||
# pick up the group membership. We do this by removing the SSH ControlPersist
|
# pick up the group membership. We do this by removing the SSH ControlPersist
|
||||||
# connection.
|
# connection.
|
||||||
|
|
||||||
|
# NOTE: This method does not work in Ansible 2.3, which uses a SHA1 hash of the
|
||||||
|
# connection parameters to determine the control persist socket path.
|
||||||
- name: Drop the persistent SSH connection to activate the new group membership
|
- name: Drop the persistent SSH connection to activate the new group membership
|
||||||
local_action:
|
local_action:
|
||||||
module: shell ssh -O stop {{ cp_hostname }} -o ControlPath={{ cp_path }}
|
module: shell ssh -O stop {{ cp_hostname }} -o ControlPath={{ cp_path }}
|
||||||
@ -26,13 +29,41 @@
|
|||||||
- "'No such file or directory' not in socket_removal.stderr"
|
- "'No such file or directory' not in socket_removal.stderr"
|
||||||
with_items: "{{ play_hosts }}"
|
with_items: "{{ play_hosts }}"
|
||||||
run_once: True
|
run_once: True
|
||||||
when: group_result|changed
|
when:
|
||||||
|
- group_result|changed
|
||||||
|
- ansible_version | version_compare('2.3', 'lt')
|
||||||
vars:
|
vars:
|
||||||
cp_hostname: "{{ hostvars[item].ansible_host|default(inventory_hostname) }}"
|
cp_hostname: "{{ hostvars[item].ansible_host|default(inventory_hostname) }}"
|
||||||
cp_username: "{{ hostvars[item].ansible_user }}"
|
cp_username: "{{ hostvars[item].ansible_user }}"
|
||||||
cp_port: "{{ hostvars[item].ansible_ssh_port|default('22') }}"
|
cp_port: "{{ hostvars[item].ansible_ssh_port|default('22') }}"
|
||||||
cp_path: "~/.ansible/cp/ansible-ssh-{{ cp_hostname }}-{{ cp_port }}-{{ cp_username }}"
|
cp_path: "~/.ansible/cp/ansible-ssh-{{ cp_hostname }}-{{ cp_port }}-{{ cp_username }}"
|
||||||
|
|
||||||
|
# NOTE: For Ansible 2.3+, ideally we'd use a meta task with the
|
||||||
|
# reset_connection option but due to
|
||||||
|
# https://github.com/ansible/ansible/issues/27520 this does not work (checked
|
||||||
|
# in Ansible 2.3.2.0). Instead, we use the heavy handed method of removing all
|
||||||
|
# ansible control sockets. Limitation: if this user is running another ansible
|
||||||
|
# process, we will kill its connections.
|
||||||
|
- name: Find persistent SSH connection control sockets
|
||||||
|
local_action:
|
||||||
|
module: find
|
||||||
|
file_type: any
|
||||||
|
path: "~/.ansible/cp/"
|
||||||
|
patterns: '[a-f0-9]{10}'
|
||||||
|
use_regex: True
|
||||||
|
register: cp_sockets
|
||||||
|
run_once: True
|
||||||
|
when:
|
||||||
|
- group_result|changed
|
||||||
|
- ansible_version | version_compare('2.3', 'ge')
|
||||||
|
|
||||||
|
- name: Drop all persistent SSH connections to activate the new group membership
|
||||||
|
local_action:
|
||||||
|
module: shell ssh -O stop None -o ControlPath={{ item.path }}
|
||||||
|
with_items: "{{ cp_sockets.files }}"
|
||||||
|
run_once: True
|
||||||
|
when: not cp_sockets|skipped
|
||||||
|
|
||||||
- name: Ensure Docker daemon is started
|
- name: Ensure Docker daemon is started
|
||||||
service:
|
service:
|
||||||
name: docker
|
name: docker
|
||||||
|
Loading…
Reference in New Issue
Block a user