How to LSBize an Init Script

This is a short documentation about how to make an Init Script LSB-compliant based on the [http://refspecs.freestandards.org/LSB_3.1.0/LSB-Core-generic/LSB-Core-generic/tocsysinit.html [Chapter 20 of the LSB 3.1]]. LSB-compliant init scripts need to:

and should also follow [http://www.debian.org/doc/debian-policy/ch-opersys.html#s9.4 Debian Policy, chapter 9.4 Console messages from init.d scripts])

Full informantion on the actions (and return codes) that LSB scripts have to honor are available at [http://refspecs.freestandards.org/LSB_3.1.0/LSB-Core-generic/LSB-Core-generic/iniscrptact.html LSB 3.1, Chapter 20.2. Init Script Actions]. Maintainers should review that section and review / adjust their init.d scripts accordingly.

Run-time dependencies

By documenting the run-time dependencies for init.d scripts, it becomes possible to verify the current boot order, and also to run boot scripts in parallel to speed up the boot process (This is on the [http://wiki.debian.org/EtchTODOList TODO list for Etch])

Most of this page has been pulled from a [http://lists.debian.org/debian-devel/2005/08/msg01172.html message by Petter Reinholdtsen] on [http://lists.debian.org/debian-devel Debian-devel].

Add a block like this in the init.d script (example based on xdebconfigurator):

### BEGIN INIT INFO
# Provides:          xdebconfigurator
# Required-Start:    $syslog
# Required-Stop:     $syslog
# Should-Start:      $local_fs
# Should-Stop:       $local_fs
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Generate xfree86 configuration at boot time
# Description:       Preseed X configuration and use dexconf to
#                    generate a new configuration file.
### END INIT INFO

The block show above has a special rigid format delimited by the lines

### BEGIN INIT INFO
### END INIT INFO

where all traling spaces shall be ignored. On the other hand, all lines inside the block shall of the form

# {keyword}: arg1 [arg2...]

and begin with a hash character '#' in the first column, except for the lines following the Description keyword. The following keywords are defined

Provides: boot_facility_1 [boot_facility_2...]

Required-Start: boot_facility_1 [boot_facility_2...],Required-Stop: boot_facility_1 [boot_facility_2...]

Should-Start: boot_facility_1 [boot_facility_2...],Should-Stop: boot_facility_1 [boot_facility_2...]

'Default-Start: run_level_1 [run_level_2...],Default-Stop: run_level_1 [run_level_2...]

Short-Description: short_description, Description: multiline_description

For dependency tracking, the required- and should- are important, and the rest is unused. The default runlevels are used by insserv to keep track of which rc#.d directory to update when a service is added for the first time, and should reflect the intent of the service.

There are some "virtual"/system service names, listed in the [http://refspecs.freestandards.org/LSB_3.0.0/LSB-Core-generic/LSB-Core-generic/facilname.html [LSB 3.0]]. These are:

$local_fs

all local filesystems are mounted

$network

low level networking (ethernet card; may imply PCMCIA running)

$named

daemons which may provide hostname resolution (if present) are running. For example, daemons to query DNS, NIS+, or LDAP.

$portmap

daemons providing ["SunRPC"]/ONCRPC portmapping service as defined in RFC 1833 (if present) are running all remote

$remote_fs

filesystems are mounted. In some LSB run-time environments, filesystems such as /usr may be remote. Many applications that require $local_fs will probably require also require $remote_fs.

$syslog

system logger is operational

$time

the system time has been set, for example by using a network-based time program such as ntp or rdate, or via the hardware Real Time Clock.


Frequent questions

Question: Is it possible to start a given init script as late as possible?

Answer: There is header specified in the LSB allowing this to be expressed. It is allowed to add extra (X-) headers, so we could add this expression if needed.

Question: Is it possible to specify that a given script should start before another script?

Answer: There is no such standard-defined header. We could define a debian specific extention to express this, but there is no implementation using such header, so we would have to implement it ourself.

Question: Shouldn't I wait until the Debian policy changes?

The Debian policy changes are slow to introduce even for things (for an example, see [http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=291148 #291148]) which most maintainers agree are good since we have to wait first for many packages to do things in the same way before turning it into policy. Since we want to be LSB compliant, init.d scripts can be adjusted ""now"" to be LSB compliant.