From 75413955d7d34f0c47cf4a37ca771149910c3260 Mon Sep 17 00:00:00 2001 From: braun <hannes.braun@slub-dresden.de> Date: Thu, 16 Mar 2023 13:57:30 +0100 Subject: [PATCH] make absent_users default to empty list --- defaults/main.yml | 3 +-- tasks/main.yml | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/defaults/main.yml b/defaults/main.yml index 7a090be..8dbbf8e 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -7,5 +7,4 @@ human_users: # ssh_key_file: "claussni.pub" # ssh_key_url: https://git.slub-dresden.de/{{ name }}.keys -absent_users: - # - "dummy" \ No newline at end of file +absent_users: [] \ No newline at end of file diff --git a/tasks/main.yml b/tasks/main.yml index 3830f45..77f6177 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -48,7 +48,6 @@ force: true remove: true with_items: "{{ absent_users }}" - ignore_errors: true become: true - name: Authorize personal SSH keys from file -- GitLab