Re: cvs commit to base-config by barbier

2004-03-12 Thread Petter Reinholdtsen
Store locale in /etc/environment when it is different from en_US. Closes: #237387 Good idea, but bad implementation. + [ -f $environment ] || [ $locale = en_US ] || echo LANG=$locale $environment This one will remove the current content of /etc/environment. That is a bad idea. It

Re: cvs commit to base-config by barbier

2004-03-12 Thread Denis Barbier
On Fri, Mar 12, 2004 at 10:37:01AM +0100, Petter Reinholdtsen wrote: Store locale in /etc/environment when it is different from en_US. Closes: #237387 Good idea, but bad implementation. + [ -f $environment ] || [ $locale = en_US ] || echo LANG=$locale $environment This one will