nah, it got mad at me >:c

This commit is contained in:
2025-04-10 02:10:48 -05:00
parent af571e6015
commit dcf2589c11

View File

@ -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