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
This commit is contained in:
Mate Lakat 2013-09-19 10:03:36 +01:00
parent 9c3b0cc4e4
commit 1ca490c049

View File

@ -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."