diff options
author | Bill Nottingham <notting@redhat.com> | 2003-08-08 19:30:54 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2003-08-08 19:30:54 +0000 |
commit | 13239ac9de9884478e9aad60ba6058262bd2e897 (patch) | |
tree | 8f0c6019b7b31a3420f145f291155956e0a47a0d /setsysfont | |
parent | a9fd5b3594897ae5d9a089f0a3036e0dea73e337 (diff) | |
download | initscripts-13239ac9de9884478e9aad60ba6058262bd2e897.tar initscripts-13239ac9de9884478e9aad60ba6058262bd2e897.tar.gz initscripts-13239ac9de9884478e9aad60ba6058262bd2e897.tar.bz2 initscripts-13239ac9de9884478e9aad60ba6058262bd2e897.tar.xz initscripts-13239ac9de9884478e9aad60ba6058262bd2e897.zip |
don't echo to /dev/console (#102004)
Diffstat (limited to 'setsysfont')
-rwxr-xr-x | setsysfont | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ elif [ -x /bin/setfont ]; then /bin/setfont $SYSFONT $ARGS # else # /bin/setfont - echo -ne "\033(K" > /dev/console + echo -ne "\033(K" 2>/dev/null > /proc/$$/fd/0 fi else echo $"can't set font" |