1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2024-09-28 08:13:06 +02:00
cdf2018-principal/raspberrypi/board/robotech/cdfprincipal/rootfs_overlay/etc/extra.d/rcS

28 lines
386 B
Plaintext
Raw Normal View History

2018-02-07 17:57:01 +01:00
#!/bin/sh
# Start all init scripts in /etc/extra.d
# executing them in numerical order.
#
for i in /etc/extra.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 start
. $i
)
;;
*)
# No sh extension, so fork subprocess.
$i start
;;
esac
done