diff options
author | Bill Nottingham <notting@redhat.com> | 1999-03-15 23:33:41 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-03-15 23:33:41 +0000 |
commit | 8e6b0c4329380298c7e26aaa0da6887ae6e988f0 (patch) | |
tree | 43e918ea0904e0056f39014b6409540625b39ee7 /lang.sh | |
parent | bc24993efd5dd2e9af769b85b0825c6290a08764 (diff) | |
download | initscripts-8e6b0c4329380298c7e26aaa0da6887ae6e988f0.tar initscripts-8e6b0c4329380298c7e26aaa0da6887ae6e988f0.tar.gz initscripts-8e6b0c4329380298c7e26aaa0da6887ae6e988f0.tar.bz2 initscripts-8e6b0c4329380298c7e26aaa0da6887ae6e988f0.tar.xz initscripts-8e6b0c4329380298c7e26aaa0da6887ae6e988f0.zip |
more support for SYSFONTACM from consoletools
Diffstat (limited to 'lang.sh')
-rwxr-xr-x | lang.sh | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -23,6 +23,16 @@ if [ -f /etc/sysconfig/i18n ]; then if [ -n "$UNIMAP" ]; then loadunimap $UNIMAP fi + + if [ -n "$SYSFONTACM" ]; then + case $SYSFONTACN in + iso01*|iso02*|iso15*) + LESSCHARSET=latin1 + INPUTRC=/etc/inputrc + export LESSCHARSET INPUTRC + ;; + esac + fi if [ -n "$SYSTERM" ] ; then case $SYSTERM in @@ -33,4 +43,5 @@ if [ -f /etc/sysconfig/i18n ]; then ;; esac fi + unset SYSFONTACM fi |