From 30e6ca595f4ea8d460a99101dcc6e56aff8ac77f Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 23 Sep 2021 22:12:37 -0600 Subject: [PATCH] users: Add a missing pubkeys tag --- roles/users/tasks/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/roles/users/tasks/main.yml b/roles/users/tasks/main.yml index 7d43050..2958e91 100644 --- a/roles/users/tasks/main.yml +++ b/roles/users/tasks/main.yml @@ -11,12 +11,16 @@ delay: 10 # perform_users_role is True by default so no need to fail the play if there's an error. ignore_errors: true + tags: + - pubkeys - name: Check host's /keys-repo-sha1 sentinel file command: cat /keys-repo-sha1 register: sentinel_sha1 # perform_users_role is True by default so no need to fail the play if there's an error. failed_when: false + tags: + - pubkeys - name: Determine if we can skip users and pubkeys updates set_fact: @@ -52,3 +56,5 @@ content: "{{ keys_repo_head.stdout }}" dest: /keys-repo-sha1 when: keys_repo_head is defined + tags: + - pubkeys -- 2.39.5