mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
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>
29 lines
537 B
Bash
Executable File
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
|