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 <kevin.carter@rackspace.com>
This commit is contained in:
Kevin Carter 2018-10-03 00:00:00 -05:00 committed by Kevin Carter (cloudnull)
parent a774f1bcab
commit 9a006a12bc
1 changed files with 1 additions and 1 deletions

View File

@ -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 %}