swift: fix group membership in debuntu/binary

The UCA packages seem to be removing the swift user from the kolla
group. Explicitly add it after installation.

Closes-Bug: #1905279

Change-Id: I51c7c6e2f520a582de0409025eb5d1a6da2952a2
(cherry picked from commit aa3208ea0f)
This commit is contained in:
Mark Goddard 2020-11-24 09:27:31 +00:00
parent 29bb43d53b
commit bc97aa5846
2 changed files with 11 additions and 0 deletions

View File

@ -24,6 +24,11 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% endif %}
{{ macros.install_packages(swift_base_packages | customizable("packages")) }}
{# NOTE(mgoddard): UCA packages seem to modify the group membership for #}
{# the swift user, removing it from the kolla group. #}
{% if base_package_type == 'deb' %}
RUN usermod --append --groups kolla swift
{% endif %}
{% elif install_type == 'source' %}
{% if base_package_type == 'rpm' %}
{% set swift_base_packages = [

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue with Swift containers failing to start in Ubuntu binary
images. `LP#1905279
<https://bugs.launchpad.net/kolla-ansible/+bug/1905279>`__