This commit is contained in:
2022-11-02 19:08:20 -05:00
parent 0ffc00e3d3
commit 93113d4251
2 changed files with 15 additions and 4 deletions

View File

@@ -107,8 +107,10 @@
masked: yes
name: power-profiles-daemon
- name: Add user to adm group
- name: Add user to groups
ansible.builtin.user:
name: user
groups: adm
append: yes
groups: "{{ item }}"
append: yes
with_items: "{{ groups_to_add }}"