aboutsummaryrefslogtreecommitdiffstats
path: root/lsb-bootscripts/etc/init.d/sendsignals
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2012-08-29 20:45:23 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2012-08-29 20:45:23 +0000
commitcb02946abfe632bc90f1eaa302b2d8d4eb73e5c9 (patch)
tree0a19838c2a1d6b59f976c3138554eb4963bf1903 /lsb-bootscripts/etc/init.d/sendsignals
parentd7f2eb08dab7e6dd88df0102ec48dce0a301dc5f (diff)
Lots of spelling fixes.
Delete the no longer used lsb-bootscripts directory git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9967 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'lsb-bootscripts/etc/init.d/sendsignals')
-rw-r--r--lsb-bootscripts/etc/init.d/sendsignals54
1 files changed, 0 insertions, 54 deletions
diff --git a/lsb-bootscripts/etc/init.d/sendsignals b/lsb-bootscripts/etc/init.d/sendsignals
deleted file mode 100644
index a09c7b0e2..000000000
--- a/lsb-bootscripts/etc/init.d/sendsignals
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-# Begin $RC_BASE/init.d/sendsignals
-
-### BEGIN INIT INFO
-# Provides: sendsignals
-# Required-Start:
-# Should-Start:
-# Required-Stop: $local_fs swap localnet
-# Should-Stop:
-# Default-Start:
-# Default-Stop: 0 6
-# Short-Description: Attempts to kill remaining processes.
-# Description: Attempts to kill remaining processes.
-# X-LFS-Provided-By: LFS
-### END INIT INFO
-
-. /lib/lsb/init-functions
-
-case "${1}" in
- stop)
- message="Sending all processes the TERM signal..."
- killall5 -15
- error_value=${?}
- # Account for successful return value of 2
- if [ ${error_value} -eq 2 ]; then
- error_value=0
- fi
- sleep 3
-
- (exit ${error_value})
- evaluate_retval standard
-
- message="Sending all processes the KILL signal..."
- killall5 -9
- error_value=${?}
- # Account for successful return value of 2
- if [ ${error_value} -eq 2 ]; then
- error_value=0
- fi
-
- sleep 3
-
- (exit ${error_value})
- evaluate_retval standard
- ;;
-
- *)
- echo "Usage: ${0} {stop}"
- exit 1
- ;;
-
-esac
-
-# End $RC_BASE/init.d/sendsignals