blob: 64c3f8ec3a0f46b85dae198976e2c5f83ca3c5cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# rc - System V runlevel compatibility
#
# This task runs the old sysv-rc runlevel scripts. It
# is usually started by the telinit compatibility wrapper.
#
# Do not edit this file directly. If you want to change the behaviour,
# please create a file rc.override and put your changes there.
start on runlevel [0123456]
stop on runlevel [!$RUNLEVEL]
task
export RUNLEVEL
console output
exec /etc/rc.d/rc $RUNLEVEL
|