aboutsummaryrefslogtreecommitdiffstats
path: root/lang.csh
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2012-12-10 11:18:08 -0500
committerBill Nottingham <notting@redhat.com>2012-12-10 11:18:08 -0500
commit88857e147b92ec4062b5c8ee22aca253f08c1bd0 (patch)
tree5ba73e4b3be6e23fed3370add4115e7e255245ca /lang.csh
parent65173d72f1a662a8596aa0e14232556ba40e452f (diff)
downloadinitscripts-88857e147b92ec4062b5c8ee22aca253f08c1bd0.tar
initscripts-88857e147b92ec4062b5c8ee22aca253f08c1bd0.tar.gz
initscripts-88857e147b92ec4062b5c8ee22aca253f08c1bd0.tar.bz2
initscripts-88857e147b92ec4062b5c8ee22aca253f08c1bd0.tar.xz
initscripts-88857e147b92ec4062b5c8ee22aca253f08c1bd0.zip
Migrate even further away from /etc/sysconfig/network for hostname, and /etc/sysconfig/i18n.
Diffstat (limited to 'lang.csh')
-rwxr-xr-xlang.csh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang.csh b/lang.csh
index 3a65c64b..c6a44664 100755
--- a/lang.csh
+++ b/lang.csh
@@ -11,7 +11,7 @@ if ($?LANG) then
setenv LANG $saved_lang
unset saved_lang
else
- foreach file (/etc/sysconfig/i18n /etc/locale.conf "$HOME/.i18n")
+ foreach file (/etc/locale.conf "$HOME/.i18n")
if ( -f $file ) then
eval `sed -ne 's|^[[:blank:]]*\([^#=]\{1,\}\)=\([^=]*\)|setenv \1 \2;|p' $file`
set sourced=1