From 9a006a12bcde7c19551b83b28dfe2c51ec62f84c Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Wed, 3 Oct 2018 00:00:00 -0500 Subject: [PATCH] Remove infectious distro service packages on source installs The glance distro service packages were being combined with both distro installs and source installs. This resulted in a situation where glance was running both the distro service units as well as the source service units causing lots of extra over head and transient failures. This change removes the glance distro packages from the source based install. Change-Id: I14dc46df74e5de2600b8d35c3018cff3caf5eafd Signed-off-by: Kevin Carter --- vars/source_install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/source_install.yml b/vars/source_install.yml index 891b1f11..9695c677 100644 --- a/vars/source_install.yml +++ b/vars/source_install.yml @@ -14,7 +14,7 @@ # limitations under the License. glance_package_list: |- - {% set packages = (glance_distro_packages + glance_service_distro_packages) %} + {% set packages = glance_distro_packages %} {% if glance_oslomsg_amqp1_enabled | bool %} {% set _ = packages.extend(glance_oslomsg_amqp1_distro_packages) %} {% endif %}