Skip to content

Commit

Permalink
Merge pull request #335 from stackhpc/upstream/2024.1-2024-08-26
Browse files Browse the repository at this point in the history
Synchronise 2024.1 with upstream
  • Loading branch information
markgoddard authored Aug 27, 2024
2 parents bdf88c9 + 7bc03b9 commit 45107df
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
10 changes: 10 additions & 0 deletions docker/base/httpd_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,13 @@ EOF
/usr/libexec/httpd-ssl-gencerts
fi
fi

# The default system locale with unicode support
LANG=C.UTF-8

# Override the default locale if configured
if [[ "${KOLLA_BASE_DISTRO}" =~ debian|ubuntu ]]; then
[ -f /etc/default/locale ] && . /etc/default/locale
else
[ -f /etc/locale.conf ] && . /etc/locale.conf
fi
2 changes: 0 additions & 2 deletions docker/letsencrypt/letsencrypt-base/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build

{% import "macros.j2" as macros with context %}

{{ macros.install_packages(cinder_base_packages | customizable("packages")) }}

COPY extend_start.sh /usr/local/bin/kolla_extend_start

{% block letsencrypt_base_footer %}{% endblock %}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
fixes:
- |
Apache services like Keystone now started with correct unicode locale.
Keystone under Apache on Ubuntu will fail with a UnicodeEncodeError
when LDAP driver and DEBUG are enabled.
`LP#2076453 <https://bugs.launchpad.net/kolla/+bug/2076453>`__

0 comments on commit 45107df

Please sign in to comment.