All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Noah Knegt <git@noahknegt.com>
19 lines
711 B
YAML
19 lines
711 B
YAML
# ===================================================================================================
|
|
# ? ABOUT
|
|
# @author : Noah Knegt
|
|
# @email : personal@noahknegt.com
|
|
# @repo : https://git.noahknegt.com/noah.knegt/ansible-automations
|
|
# @createdOn : 31-03-2023
|
|
# @description : This will add selected users to the docker group.
|
|
# ===================================================================================================
|
|
|
|
---
|
|
- name: Add users to the docker group
|
|
become: true
|
|
user:
|
|
name: "{{ item }}"
|
|
groups: docker
|
|
append: true
|
|
with_items: "{{ docker_users }}"
|
|
when: docker_users is defined
|