python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / initscripts / init.d / rcS
blobde411534dae38ae29c658897f024a6a8f0c45c39
1 #!/bin/sh
4 # Start all init scripts in /etc/init.d
5 # executing them in numerical order.
7 for i in /etc/init.d/S??* ;do
9 # Ignore dangling symlinks (if any).
10 [ ! -f "$i" ] && continue
12 case "$i" in
13 *.sh)
14 # Source shell script for speed.
16 trap - INT QUIT TSTP
17 set start
18 . $i
22 # No sh extension, so fork subprocess.
23 $i start
25 esac
26 done