opensuse-minimal: install glibc-locale
We expect LC_ALL for non-C locales to be working inside images, so always install glibc-locale for openSUSE. Change-Id: I8fe92773e377539070d9d9fe2960a6202bb80a18
This commit is contained in:
parent
43e32116bd
commit
59721d3c74
@ -1,5 +1,7 @@
|
|||||||
# kernel
|
# kernel
|
||||||
kernel-default:
|
kernel-default:
|
||||||
|
# locale support (we need LC_ALL=en_US.utf8)
|
||||||
|
glibc-locale:
|
||||||
# And a few useful tools. Some are pulled
|
# And a few useful tools. Some are pulled
|
||||||
# as dependencies but that may change so lets
|
# as dependencies but that may change so lets
|
||||||
# be explicit.
|
# be explicit.
|
||||||
|
12
diskimage_builder/elements/zypper-minimal/post-install.d/01-locale-cleanup
Executable file
12
diskimage_builder/elements/zypper-minimal/post-install.d/01-locale-cleanup
Executable file
@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Only keep the minimum amount of locales to save disk space
|
||||||
|
#
|
||||||
|
|
||||||
|
if [ "${DIB_DEBUG_TRACE:-0}" -gt 0 ]; then
|
||||||
|
set -x
|
||||||
|
fi
|
||||||
|
set -eu
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
find /usr/lib/locale -mindepth 1 -maxdepth 1 -type d 2>/dev/null | \
|
||||||
|
grep -Ev '/(C.utf8|en_US|en_US.utf8)$' | xargs rm -rf
|
Loading…
Reference in New Issue
Block a user