From ebf8263f0ddca08e00261a705d5504225d922cfb Mon Sep 17 00:00:00 2001 From: rulrich Date: Mon, 11 Mar 2024 09:20:23 +0100 Subject: [PATCH] roles/users/tasks/main.yml aktualisiert --- roles/users/tasks/main.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/roles/users/tasks/main.yml b/roles/users/tasks/main.yml index a4579c9..1575ffb 100644 --- a/roles/users/tasks/main.yml +++ b/roles/users/tasks/main.yml @@ -26,22 +26,22 @@ name: lea shell: /bin/bash groups: admins - append: yes + append: true - name: Ensure user "beat" exists ansible.builtin.user: name: beat shell: /bin/bash groups: admins - append: yes + append: true - name: Ensure user "rulrich" exists ansible.builtin.user: name: rulrich shell: /bin/bash groups: admins - append: yes - + append: true + - name: Set up authorized keys for user lea ansible.posix.authorized_key: user: lea @@ -65,4 +65,3 @@ key: '{{ item }}' with_file: - public_keys/rulrich -