File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,11 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
24
24
{% endif %}
25
25
26
26
{{ macros.install_packages(swift_base_packages | customizable("packages")) }}
27
+ {# NOTE(mgoddard): UCA packages seem to modify the group membership for #}
28
+ {# the swift user, removing it from the kolla group. #}
29
+ {% if base_package_type == 'deb' %}
30
+ RUN usermod --append --groups kolla swift
31
+ {% endif %}
27
32
{% elif install_type == 'source' %}
28
33
{% if base_package_type == 'rpm' %}
29
34
{% set swift_base_packages = [
Original file line number Diff line number Diff line change
1
+ ---
2
+ fixes :
3
+ - |
4
+ Fixes an issue with Swift containers failing to start in Ubuntu binary
5
+ images. `LP#1905279
6
+ <https://bugs.launchpad.net/kolla-ansible/+bug/1905279>`__
You can’t perform that action at this time.
0 commit comments