From 3b89d09593880f1791a966f704bfb15236385150 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Tue, 10 Jan 2017 15:44:47 +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) [1]. [1]: http://docs.openstack.org/developer/openstack-ansible/developer-docs/contribute.html#ansible-style-guide Change-Id: I23c36c5ea888a75ce7deddf272bd222af3b9e9f5 --- tasks/main.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index ecf15767..58379bdf 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -44,7 +44,6 @@ - include: ironic_post_install.yml tags: - - ironic-install - ironic-config - include: ironic_api_post_install.yml @@ -60,13 +59,13 @@ - include: ironic_db_setup.yml when: inventory_hostname == groups['ironic_conductor'][0] tags: - - ironic-install + - ironic-config - include: ironic_init.yml tags: - - ironic-install + - ironic-config - include: ironic_service_setup.yml when: inventory_hostname == groups['ironic_api'][0] tags: - - ironic-install + - ironic-config