From 99d7d7a393dea5e1029e72ce3e27342b024bb3ac Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Tue, 10 Jan 2017 14:19:28 +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: Ia9b22a9d40263df11b5245fd33a37cbc98b0718d --- tasks/main.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 379fc2f8..82da13ac 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -35,22 +35,21 @@ - include: glance_post_install.yml tags: - - glance-install - glance-config - include: glance_init_common.yml tags: - - glance-install + - glance-config - include: glance_db_setup.yml when: inventory_hostname == groups['glance_all'][0] tags: - - glance-install + - glance-config - include: glance_service_setup.yml when: inventory_hostname == groups['glance_all'][0] tags: - - glance-install + - glance-config - name: Flush handlers meta: flush_handlers