home *** CD-ROM | disk | FTP | other *** search
- # rc1 - runlevel 1 compatibility
- #
- # This task runs the old sysv-rc runlevel 1 ("single-user") scripts.
-
- start on runlevel 1
-
- stop on runlevel [!1]
-
- console output
- script
- set $(runlevel --set 1 || true)
- if [ "$1" != "unknown" ]; then
- PREVLEVEL=$1
- RUNLEVEL=$2
- export PREVLEVEL RUNLEVEL
- fi
-
- exec /etc/init.d/rc 1
- end script
-