nah, it got mad at me >:c
This commit is contained in:
@ -49,7 +49,7 @@
|
||||
name: ansible
|
||||
groups: wheel
|
||||
append: yes
|
||||
when: wheel in groups
|
||||
when: "'wheel' in groups"
|
||||
|
||||
# Ansible user SSH pub key
|
||||
# This is a really stupid way to do it, but alas.
|
||||
@ -106,21 +106,21 @@
|
||||
name: nhadmin
|
||||
groups: wheel
|
||||
append: yes
|
||||
when: 'wheel' in groups
|
||||
when: "'wheel' in groups"
|
||||
|
||||
- name: Add nhadmin to sudo group.
|
||||
user:
|
||||
name: nhadmin
|
||||
groups: sudo
|
||||
append: yes
|
||||
when: 'sudo' in groups
|
||||
when: "'sudo' in groups"
|
||||
|
||||
- name: Add nhadmin to systemd-journal group.
|
||||
user:
|
||||
name: nhadmin
|
||||
groups: systemd-journal
|
||||
append: yes
|
||||
when: 'systemd-journal' in groups
|
||||
when: "'systemd-journal' in groups"
|
||||
|
||||
|
||||
# Sysadmin user SSH pub key
|
||||
|
Reference in New Issue
Block a user