Files
buildroot/package/initscripts/init.d/rcK
Fiona Klute c5a0a71d7c package/initscripts: fix check-package warnings & indent
No functional change. Add package-level .editorconfig so indentation
matches what other init scripts use.

Signed-off-by: Fiona Klute <fiona.klute@gmx.de>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 3a488674b5)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
2026-05-12 15:28:02 +02:00

29 lines
537 B
Bash
Executable File

#!/bin/sh
#
# Stop all init scripts in /etc/init.d
# executing them in reversed numerical order.
#
# we need to reverse the order here, sort -r would be no less fragile
# shellcheck disable=SC2045
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
# shellcheck source=/dev/null
. "$i"
)
;;
*)
# No sh extension, so fork subprocess.
"$i" stop
;;
esac
done