The following pull request was submitted through Github.
It can be accessed and reviewed at: https://github.com/lxc/lxc-templates/pull/29

This e-mail was sent by the LXC bot, direct replies will not reach the author
unless they happen to be subscribed to this list.

=== Description (from pull-request) ===
Fixes #28 
From 7e47ba0a00083426befa03564da4920c806c8c4b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Pierre-Elliott=20B=C3=A9cue?= <be...@crans.org>
Date: Fri, 20 Mar 2020 11:43:02 +0100
Subject: [PATCH] [lxc-debian] Handle languages that are only UTF-8 encoded

---
 templates/lxc-debian.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/templates/lxc-debian.in b/templates/lxc-debian.in
index fd26d5e..efc1ead 100644
--- a/templates/lxc-debian.in
+++ b/templates/lxc-debian.in
@@ -129,7 +129,8 @@ EOF
         chroot "$rootfs" locale-gen en_US.UTF-8 UTF-8
         chroot "$rootfs" update-locale LANG=en_US.UTF-8
     else
-        encoding=$(echo "$LANG" | cut -d. -f2)
+        encoding=$(echo "$LANG" | cut -d. -f2 -s)
+        [ -z "${encoding}" ] && encoding="UTF-8"
         chroot "$rootfs" sed -e "s/^# \(${LANG} ${encoding}\)/\1/" \
             -i /etc/locale.gen 2> /dev/null
         cat >> "$rootfs/etc/locale.gen" << EOF
_______________________________________________
lxc-devel mailing list
lxc-devel@lists.linuxcontainers.org
http://lists.linuxcontainers.org/listinfo/lxc-devel

Reply via email to