blob: 9d0e06440bf1c86c7a7b1a7bb65479fce5a78b5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
{
grep '^#INIT ' /etc/init.d/* | \
sort -rnk2 | \
while read line; do
shebang=$(sed -n '1s/^#![ ]*//p' ${line%%:*})
case $shebang in
*[\ \ ]*) shebang=\'$(echo X"$shebang" | sed \
-e 's/^X//' -e "s/'/'\\\\''/g" \
-e 's/^\([^ ][^ ]*\)[ ]*$/\1/' \
-e 's/^\([^ ][^ ]*\)[ ][ ]*\(..*\)$/\1 \2/' \
-e 's/^\([^ ][^ ]*\) /\1'\'' '\''/')\' ;;
esac
${shebang:-/bin/sh} ${line%%:*} autostop 2>&1
done
test -e /etc/rc.shutdown && (/bin/sh /etc/rc.shutdown) 2>&1
} | logger -s -p 6 -t ''
|