2 ########################################################################
5 # Description : Sendsignals Script
7 # Authors : Gerard Beekmans - gerard@linuxfromscratch.org
8 # DJ Lucas - dj@linuxfromscratch.org
9 # Update : Bruce Dubbs - bdubbs@linuxfromscratch.org
13 ########################################################################
16 # Provides: sendsignals
19 # Required-Stop: $local_fs swap localnet
23 # Short-Description: Attempts to kill remaining processes.
24 # Description: Attempts to kill remaining processes.
25 # X-LFS-Provided-By: LFS
28 .
/lib
/lsb
/init-functions
32 log_info_msg
"Sending all processes the TERM signal..."
38 if [ "${error_value}" = 0 -o "${error_value}" = 2 ]; then
44 log_info_msg
"Sending all processes the KILL signal..."
50 if [ "${error_value}" = 0 -o "${error_value}" = 2 ]; then
58 echo "Usage: ${0} {stop}"