diff options
author | Bill Nottingham <notting@redhat.com> | 1999-09-20 17:17:15 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-09-20 17:17:15 +0000 |
commit | e0084ea34525c5f96d6781295dc7d914c65ded01 (patch) | |
tree | 6e39f241c9880232d7b083072c43cb2ed0411e82 /rc.d/rc.sysinit | |
parent | 044f1dc0685f4584b1a7b20c933bbe78f0ddf82d (diff) | |
download | initscripts-e0084ea34525c5f96d6781295dc7d914c65ded01.tar initscripts-e0084ea34525c5f96d6781295dc7d914c65ded01.tar.gz initscripts-e0084ea34525c5f96d6781295dc7d914c65ded01.tar.bz2 initscripts-e0084ea34525c5f96d6781295dc7d914c65ded01.tar.xz initscripts-e0084ea34525c5f96d6781295dc7d914c65ded01.zip |
use kill & pidof, not killall (no /usr)
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index df838f6e..02e92506 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -511,7 +511,7 @@ EOF # Now that we have all of our basic modules loaded and the kernel going, # let's dump the syslog ring somewhere so we can find it later dmesg > /var/log/dmesg -killall -TERM getkey >/dev/null 2>&1 +kill -TERM `/sbin/pidof getkey` >/dev/null 2>&1 } & if [ "$PROMPT" != "no" ]; then /sbin/getkey i && touch /tmp/confirm |