]> git.pld-linux.org Git - projects/rc-scripts.git/blob - init/rcS.conf
570a288fb113399d110dd9c02a5d1738ed07523f
[projects/rc-scripts.git] / init / rcS.conf
1 description "rcS - runlevel compatibility \
2 \
3 This task runs the old sysv-rc startup scripts."
4
5 start on startup
6
7 stop on runlevel
8
9 emits all-swaps filesystem local-filesystems root-filesystem virtual-filesystems runlevel
10 emits pld.sysinit-done
11
12 task
13
14 # Note: there can be no previous runlevel here, if we have one it's bad
15 # information (we enter rc1 not rcS for maintenance).  Run /etc/rc.d/rc
16 # without information so that it defaults to previous=N runlevel=S.
17 console output
18 exec /etc/rc.d/rc.sysinit
19
20 post-stop script
21         if [ "$UPSTART_EVENTS" = "startup" ]; then
22                 runlevel=$(/bin/awk -F ':' '$3 == "initdefault" && $1 !~ "^#" { print $2 }' /etc/inittab)
23                 [ -z "$runlevel" ] && runlevel="3"
24                 for t in $(cat /proc/cmdline); do
25                         case $t in
26                                 -s|single|S|s) runlevel="S" ;;
27                                 [1-9])       runlevel="$t" ;;
28                         esac
29                 done
30                 exec telinit $runlevel
31         fi
32 end script
This page took 0.055002 seconds and 2 git commands to generate.