diff options
author | Bill Nottingham <notting@redhat.com> | 1999-06-17 16:22:25 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-06-17 16:22:25 +0000 |
commit | 19eaf7b3c62da6e6f6af5ce481ddf661bd906e00 (patch) | |
tree | 535060c7b3ebab8406e35a9d41cb11f8598b7ef7 /rc.d/rc.sysinit | |
parent | 2b0c2e16b8a030d90b41fc91a587206ba68dbe8a (diff) | |
download | initscripts-19eaf7b3c62da6e6f6af5ce481ddf661bd906e00.tar initscripts-19eaf7b3c62da6e6f6af5ce481ddf661bd906e00.tar.gz initscripts-19eaf7b3c62da6e6f6af5ce481ddf661bd906e00.tar.bz2 initscripts-19eaf7b3c62da6e6f6af5ce481ddf661bd906e00.tar.xz initscripts-19eaf7b3c62da6e6f6af5ce481ddf661bd906e00.zip |
use INITLOG_ARGS everywhere except fsck, fix typo
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-x | rc.d/rc.sysinit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 86539176..d8697483 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -7,7 +7,7 @@ # Rerun ourselves through initlog if [ -z "$IN_INITLOG" ]; then - [ -f /sbin/initlog ] && exec /sbin/initlog -r /etc/rc.d/rc.sysinit + [ -f /sbin/initlog ] && exec /sbin/initlog $INITLOG_ARGS -r /etc/rc.d/rc.sysinit fi # Set the path @@ -100,7 +100,7 @@ if [ -n "$KEYMAP" ]; then fi # Load system font -if [ -x /sbin/setsysfont ] +if [ -x /sbin/setsysfont ]; then . /etc/sysconfig/i18n if [ -f /etc/sysconfig/console/$SYSFONT.psf.gz -o -f /usr/lib/kbd/consolefonts/$SYSFONT.psf.gz ]; then action "Setting default font" /sbin/setsysfont |