Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Ensure LANG env is properly set when puppet runs.
Browse files Browse the repository at this point in the history
When puppet run it must support UTF-8 or whatever is the locale on the
host.  So we make sure that we pass down the LANG to the container and
that the puppet process collect it properly.

Closes-Bug: #1896640

Change-Id: Ic7bd6956f869acbee6a253269d4c3972532499e2
Co-Authored-By: Sofer Athlan-Guyot <[email protected]>
Co-Authored-By: Damien Ciabrini <[email protected]>
Co-Authored-By: Daniel Bengtsson <[email protected]>
  • Loading branch information
3 people committed Jan 14, 2021
1 parent 47829ff commit b3521d5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions common/container-puppet.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,8 @@ def mp_puppet_config(*args):
'NET_HOST=%s' % os.environ.get('NET_HOST', 'false'),
'--env',
'DEBUG=%s' % os.environ.get('DEBUG', 'false'),
'--env',
'LANG=%s' % os.environ.get('LANG', 'en_US.UTF-8'),
'--volume',
'/etc/localtime:/etc/localtime:ro',
'--volume',
Expand Down
16 changes: 8 additions & 8 deletions common/container-puppet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ export FACTER_uuid=$(cat /sys/class/dmi/id/product_uuid | tr '[:upper:]' '[:lowe
echo 'Running puppet'
# FIXME(bogdando): stdout may be falling behind of the logged syslog messages
set -x
/usr/bin/puppet apply --summarize \
--detailed-exitcodes \
--color=false \
--modulepath=/etc/puppet/modules:/usr/share/openstack-puppet/modules \
$TAGS \
$CHECK_MODE \
/etc/config.pp \
2>&1 | logger -s -t puppet-user
env "LANG=${LANG:-en_US.UTF-8}" /usr/bin/puppet apply --summarize \
--detailed-exitcodes \
--color=false \
--modulepath=/etc/puppet/modules:/usr/share/openstack-puppet/modules \
$TAGS \
$CHECK_MODE \
/etc/config.pp \
2>&1 | logger -s -t puppet-user
rc=${PIPESTATUS[0]}
[ "$DEBUG" = "false" ] && set +x
set -e
Expand Down

0 comments on commit b3521d5

Please sign in to comment.