Comment 8 for bug 132357

Revision history for this message
Florent Mertens (givre) wrote :

Colin, it seams that the env variable LANG is not exported correctly
in /etc/init.d/mountall.sh and so locale is not set correctly.

Changing :

if [ -r /etc/default/locale ]; then
        . /etc/default/locale
fi

to :

if [ -r /etc/default/locale ]; then
        . /etc/default/locale
        export LANG
fi

fix this nasty bug.
Could you take a look at it ?

Thanks.