From 10c5e0835124f98cf97aa8dc26e8abc223159e62 Mon Sep 17 00:00:00 2001 From: jkilpatr Date: Fri, 29 Jul 2016 15:54:34 -0400 Subject: [PATCH] Fix role ordering in collectd-openstack.yml so it turns out that if you don't run the common role before you try to grab the epel RPM you will run into ssl issues on OSP9 machines. this reordering fixes that. Change-Id: Ib3d80d89e5abf414913e945b57ff46020f578a6e --- ansible/install/collectd-openstack.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ansible/install/collectd-openstack.yml b/ansible/install/collectd-openstack.yml index b1b09670f..316e62f7d 100644 --- a/ansible/install/collectd-openstack.yml +++ b/ansible/install/collectd-openstack.yml @@ -8,8 +8,8 @@ vars: config_type: undercloud roles: - - { role: epel, when: collectd_undercloud } - { role: common, when: collectd_undercloud } + - { role: epel, when: collectd_undercloud } - { role: collectd-openstack, when: collectd_undercloud } tasks: - name: Collectd off if not collectd_undercloud @@ -23,8 +23,8 @@ vars: config_type: controller roles: - - { role: epel, when: collectd_controller } - { role: common, when: collectd_controller } + - { role: epel, when: collectd_controller } - { role: collectd-openstack, when: collectd_controller } tasks: - name: Collectd off if not collectd_controller @@ -38,8 +38,8 @@ vars: config_type: ceph roles: - - { role: epel, when: collectd_ceph } - { role: common, when: collectd_ceph } + - { role: epel, when: collectd_ceph } - { role: collectd-openstack, when: collectd_ceph } tasks: - name: Collectd off if not collectd_ceph @@ -53,8 +53,8 @@ vars: config_type: compute roles: - - { role: epel, when: collectd_compute } - { role: common, when: collectd_compute } + - { role: epel, when: collectd_compute } - { role: collectd-openstack, when: collectd_compute } tasks: - name: Collectd off if not collectd_compute