From dcf2589c11b449ac5a31d5f18f057a417f0264b5 Mon Sep 17 00:00:00 2001 From: iRaven Date: Thu, 10 Apr 2025 02:10:48 -0500 Subject: [PATCH] nah, it got mad at me >:c --- linux/compliance.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/linux/compliance.yaml b/linux/compliance.yaml index 97c9686..da7425e 100644 --- a/linux/compliance.yaml +++ b/linux/compliance.yaml @@ -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