From 1ca490c049d2d4b3882d764c1274a614b1588501 Mon Sep 17 00:00:00 2001 From: Mate Lakat Date: Thu, 19 Sep 2013 10:03:36 +0100 Subject: [PATCH] xenapi: Use C locale By exporting the LC_ALL=C we can get rid of localisation issues, as the actual scripts are already assuming an english installation. FIxes bug 1227527 Change-Id: Ieeebce4d53b09959146a970f3fb803201ac5ebdf --- tools/xen/install_os_domU.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/xen/install_os_domU.sh b/tools/xen/install_os_domU.sh index b49504d9e9..110bbd998c 100755 --- a/tools/xen/install_os_domU.sh +++ b/tools/xen/install_os_domU.sh @@ -10,6 +10,8 @@ set -o errexit set -o nounset set -o xtrace +export LC_ALL=C + # Abort if localrc is not set if [ ! -e ../../localrc ]; then echo "You must have a localrc with ALL necessary passwords defined before proceeding."