From 44c44e7d7a53ebb0f48c8a38480120ba9557a054 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Tue, 10 Jan 2017 13:58:17 +0000 Subject: [PATCH] Bring consistency to tags Some tags were not applied on the highest level and forced duplication. We apply here our practices to have role_name-(config|install). Change-Id: I820a0ad6bdcff5f8f1d5942ae5c4bed63aacb97e --- tasks/main.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 9f232d5..b713e84 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -36,23 +36,21 @@ - include: barbican_post_install.yml tags: - - barbican-install - barbican-config - include: barbican_init.yml tags: - - barbican-install - barbican-config - include: barbican_db_setup.yml when: inventory_hostname == groups['barbican_all'][0] tags: - - barbican-install + - barbican-config - include: barbican_service_setup.yml when: inventory_hostname == groups['barbican_all'][0] tags: - - barbican-install + - barbican-config - name: Flush handlers meta: flush_handlers