From 7699858c1fa4b3b446dc8ffb57c32478cc25c796 Mon Sep 17 00:00:00 2001 From: Tobias Maier Date: Mon, 18 Oct 2021 14:30:45 +0200 Subject: [PATCH] fff --- playbook.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/playbook.yml b/playbook.yml index 07e9a14..992341c 100644 --- a/playbook.yml +++ b/playbook.yml @@ -20,13 +20,13 @@ - name: Make sure we have a 'wheel' group group: name: wheel - state=present + state: present - name: Allow 'wheel' group to have passwordless sudo lineinfile: - dest=/etc/sudoers + dest: /etc/sudoers state: present - regexp='^%wheel' + regexp: '^%wheel' line: '%wheel ALL=(ALL) NOPASSWD: ALL' - name: Add the user tobi