1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
.\" Copyright (c) 1999-2001 Roland Rosenfeld <roland@debian.org>
.\"
.\" This manual page is free software; you can redistribute it and/or modify
.\" it under the terms of the GNU General Public License as published by
.\" the Free Software Foundation; either version 2 of the License, or
.\" (at your option) any later version.
.\"
.\" This program is distributed in the hope that it will be useful,
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
.\" GNU General Public License for more details.
.\"
.\" You should have received a copy of the GNU General Public License
.\" along with this program; if not, write to the Free Software
.\" Foundation, Inc.,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
.\"
.TH RUNLEVEL.CONF 5 "August 2001" "Debian Project" "Debian GNU/Linux"
.SH NAME
runlevel.conf \- The file-rc runlevel configuration file
.SH DESCRIPTION
.B runlevel.conf
is the configuration file for the package
.B file-rc
an alternative
.BR init (8)
boot concept. While the SysV init scheme implements runlevels through
symlinks in
.BI /etc/rc ? .d/*
,
.B file-rc
uses only one file
.B runlevel.conf
to replace all these symlinks.
.PP
This file consists of 4 columns separated by TABs or spaces with the
following contents:
.IP - 3
The first column is the sort criteria for starting and stopping
the scripts.
.IP - 3
The second column consists of a comma-seperated list of runlevels in
which the script should be switched `off'
.I or
a single
.RB ` - '
if the script should never be stopped (within that sort-number).
.IP - 3
The third column consists of a comma-seperated list of runlevels in
which the script should be switched `on'
.I or
a single
.RB ` - '
if the script should never be started (with that sort-number).
.IP - 3
The last column specifies the full name of the script.
.PP
Lines beginning with
.RB ` # '
and empty lines are ignored.
.SH EXAMPLES
.nf
#<sort> <off> <on> <script>
05 - 0 /etc/init.d/halt
05 - 1 /etc/init.d/single
05 - 6 /etc/init.d/reboot
10 0,1,6 2,3,4,5 /etc/init.d/sysklogd
12 0,1,6 2,3,4,5 /etc/init.d/kerneld
[...]
89 0,1,6 2,3,4,5 /etc/init.d/cron
99 - 2,3,4,5 /etc/init.d/rmnologin
99 0,1,6 2,3,4,5 /etc/init.d/xdm
.fi
.SH FILES
/etc/runlevel.conf
.SH AUTHOR
.B file-rc
was originally written by Winfried Trmper <winni@xpilot.org> and
adapted to the Debian system by Tom Lees <tom@lpsg.demon.co.uk>,
Martin Schulze <joey@debian.org> and Roland Rosenfeld
<roland@debian.org>.
.PP
This man page was written by Roland Rosenfeld <roland@debian.org>.
.SH "SEE ALSO"
.BR init (8),
.br
.B /usr/share/doc/sysvinit/README.runlevels.gz
|