source: bootscripts/lfs/init.d/sendsignals@ 103bbd6

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 103bbd6 was 0cda898, checked in by Bruce Dubbs <bdubbs@…>, 13 years ago

Rewrite bootscripts and Chaper 7

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9574 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[1c48007]1#!/bin/sh
2########################################################################
[0cda898]3# Begin sendsignals
[1c48007]4#
5# Description : Sendsignals Script
6#
7# Authors : Gerard Beekmans - gerard@linuxfromscratch.org
[0cda898]8# Update : Bruce Dubbs - bdubbs@linuxfromscratch.org
[1c48007]9#
[0cda898]10# Version : LFS 7.0
[1c48007]11#
12########################################################################
13
[0cda898]14### BEGIN INIT INFO
15# Provides: sendsignals
16# Required-Start:
17# Should-Start:
18# Required-Stop: $local_fs swap localnet
19# Should-Stop:
20# Default-Start:
21# Default-Stop: 0 6
22# Short-Description: Attempts to kill remaining processes.
23# Description: Attempts to kill remaining processes.
24# X-LFS-Provided-By: LFS
25### END INIT INFO
26
27. /lib/boot//functions
[1c48007]28
29case "${1}" in
[0cda898]30 stop)
31 boot_mesg "Sending all processes the TERM signal..."
32 killall5 -15
33 error_value=${?}
[1c48007]34
[0cda898]35 sleep ${KILLDELAY}
[1c48007]36
[0cda898]37 if [ "${error_value}" = 0 -o "${error_value}" = 2 ]; then
38 echo_ok
39 else
40 echo_failure
41 fi
[1c48007]42
[0cda898]43 boot_mesg "Sending all processes the KILL signal..."
44 killall5 -9
45 error_value=${?}
[1c48007]46
[0cda898]47 sleep ${KILLDELAY}
[1c48007]48
[0cda898]49 if [ "${error_value}" = 0 -o "${error_value}" = 2 ]; then
50 echo_ok
51 else
52 echo_failure
53 fi
54 ;;
[1c48007]55
[0cda898]56 *)
57 echo "Usage: ${0} {stop}"
58 exit 1
59 ;;
[1c48007]60
61esac
62
[0cda898]63# End sendsignals
Note: See TracBrowser for help on using the repository browser.