Browse code

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

Mate Lakat authored on 2013/09/19 18:03:36
Showing 1 changed files
... ...
@@ -10,6 +10,8 @@ set -o errexit
10 10
 set -o nounset
11 11
 set -o xtrace
12 12
 
13
+export LC_ALL=C
14
+
13 15
 # Abort if localrc is not set
14 16
 if [ ! -e ../../localrc ]; then
15 17
     echo "You must have a localrc with ALL necessary passwords defined before proceeding."