This commit follows commit ad501b66
. Start up of the busybox logging
daemons were moved to an init script but the shutdown were still
performed in inittab. This commit moves the shutdown policy to an
rcK script that calls the stop function of all the init scripts in
a reversed order.
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
28 lines
423 B
Bash
Executable File
28 lines
423 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
# Stop all init scripts in /etc/init.d
|
|
# executing them in reversed numerical order.
|
|
#
|
|
for i in $(ls -r /etc/init.d/S??*) ;do
|
|
|
|
# Ignore dangling symlinks (if any).
|
|
[ ! -f "$i" ] && continue
|
|
|
|
case "$i" in
|
|
*.sh)
|
|
# Source shell script for speed.
|
|
(
|
|
trap - INT QUIT TSTP
|
|
set stop
|
|
. $i
|
|
)
|
|
;;
|
|
*)
|
|
# No sh extension, so fork subprocess.
|
|
$i stop
|
|
;;
|
|
esac
|
|
done
|
|
|