diff options
author | Bill Nottingham <notting@redhat.com> | 1999-09-10 20:27:23 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-09-10 20:27:23 +0000 |
commit | ac64b5405b73192ed15218f220885379c65f53c4 (patch) | |
tree | 82eff920918683b96057394f039180cb9841fe83 /rc.d/init.d | |
parent | 301ca11b3b7fb1f3f01b53accabde865f9c5335e (diff) | |
download | initscripts-ac64b5405b73192ed15218f220885379c65f53c4.tar initscripts-ac64b5405b73192ed15218f220885379c65f53c4.tar.gz initscripts-ac64b5405b73192ed15218f220885379c65f53c4.tar.bz2 initscripts-ac64b5405b73192ed15218f220885379c65f53c4.tar.xz initscripts-ac64b5405b73192ed15218f220885379c65f53c4.zip |
use killall5, not kill
Diffstat (limited to 'rc.d/init.d')
-rwxr-xr-x | rc.d/init.d/halt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/init.d/halt b/rc.d/init.d/halt index f9ed0389..5c50bf66 100755 --- a/rc.d/init.d/halt +++ b/rc.d/init.d/halt @@ -43,9 +43,9 @@ esac # Kill all processes. [ "${BASH+bash}" = bash ] && enable kill -runcmd "Sending all processes the TERM signal..." kill -15 -1 +runcmd "Sending all processes the TERM signal..." /sbin/killall5 -15 sleep 5 -runcmd "Sending all processes the KILL signal.." kill -9 -1 +runcmd "Sending all processes the KILL signal.." /sbin/killall5 -9 # Write to wtmp file before unmounting /var halt -w |