2021-02-13 14:20:18 +01:00
|
|
|
---
|
|
|
|
- name: Ensure docker users are added to the docker group.
|
|
|
|
user:
|
|
|
|
name: "{{ item }}"
|
|
|
|
groups: docker
|
|
|
|
append: true
|
|
|
|
with_items: "{{ docker_users }}"
|
2023-02-17 11:50:19 +01:00
|
|
|
|
|
|
|
- name: Reset ssh connection to apply user changes.
|
|
|
|
meta: reset_connection
|