From: Zack Cerza Date: Fri, 24 Sep 2021 04:12:37 +0000 (-0600) Subject: users: Add a missing pubkeys tag X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=30e6ca595f4ea8d460a99101dcc6e56aff8ac77f;p=ceph-cm-ansible.git users: Add a missing pubkeys tag --- diff --git a/roles/users/tasks/main.yml b/roles/users/tasks/main.yml index 7d43050e..2958e912 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