]> git.pld-linux.org Git - projects/rc-scripts.git/blame_incremental - lang.csh
- just warn about disabled master interface, don't silently disable vlans
[projects/rc-scripts.git] / lang.csh
... / ...
CommitLineData
1#!/bin/csh
2#
3# $Id$
4#
5
6test -f /etc/sysconfig/i18n
7if ($status == 0) then
8 if ($?LANG) then
9 setenv LANG
10 endif
11 if ($?LC_ALL) then
12 setenv LC_ALL
13 endif
14 if ($?LINGUAS) then
15 setenv LINGUAS
16 endif
17 if ($?SYSTERM) then
18 setenv TERM=$SYSTERM
19 endif
20 if ($?_XKB_CHARSET) then
21 setenv _XKB_CHARSET
22 endif
23 if ($?INPUTRC) then
24 setenv INPUTRC
25 endif
26 if ($?LESSCHARSET) then
27 setenv LESSCHARSET
28 else if ($TERM == linux-lat) then
29 setenv LESSCHARSET latin1
30 endif
31endif
This page took 0.049992 seconds and 4 git commands to generate.