freebsd-dev/share/man/man8/rc.subr.8

908 lines
19 KiB
Groff
Raw Normal View History

.\" $NetBSD: rc.subr.8,v 1.12 2004/01/06 00:52:24 lukem Exp $
.\"
.\" Copyright (c) 2002-2004 The NetBSD Foundation, Inc.
.\" All rights reserved.
.\"
.\" This code is derived from software contributed to The NetBSD Foundation
.\" by Luke Mewburn.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed by the NetBSD
.\" Foundation, Inc. and its contributors.
.\" 4. Neither the name of The NetBSD Foundation nor the names of its
.\" contributors may be used to endorse or promote products derived
.\" from this software without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
2004-07-09 10:08:03 +00:00
.\" $FreeBSD$
.\"
.Dd December 27, 2006
.Dt RC.SUBR 8
.Os
.Sh NAME
.Nm rc.subr
.Nd functions used by system shell scripts
.Sh SYNOPSIS
2004-07-09 10:08:03 +00:00
.Bl -item -compact
.It
2004-07-09 10:08:03 +00:00
.Ic .\& Pa /etc/rc.subr
.Pp
.It
.Ic backup_file Ar action Ar file Ar current Ar backup
.It
.Ic checkyesno Ar var
.It
.Ic check_pidfile Ar pidfile Ar procname Op Ar interpreter
.It
.Ic check_process Ar procname Op Ar interpreter
.It
.Ic debug Ar message
.It
.Ic err Ar exitval Ar message
.It
.Ic force_depend Ar name
.It
.Ic info Ar message
.It
.Ic load_kld Oo Fl e Ar regex Oc Oo Fl m Ar module Oc Ar file
.It
.Ic load_rc_config Ar name
.It
.Ic load_rc_config_var Ar name Ar var
.It
.Ic mount_critical_filesystems Ar type
.It
2004-07-09 10:08:03 +00:00
.Ic rc_usage Ar command ...
.It
2004-07-09 10:08:03 +00:00
.Ic reverse_list Ar item ...
.It
.Ic run_rc_command Ar argument
.It
.Ic run_rc_script Ar file Ar argument
.It
.Ic set_rcvar Op Ar base
.It
2004-07-09 10:08:03 +00:00
.Ic wait_for_pids Op Ar pid ...
.It
.Ic warn Ar message
.El
.Sh DESCRIPTION
2004-07-09 10:08:03 +00:00
The
.Nm
2004-07-09 10:08:03 +00:00
script
contains commonly used shell script functions and variable
definitions which are used by various scripts such as
.Xr rc 8 .
Scripts required by ports in
.Pa /usr/local/etc/rc.d
will also eventually
be rewritten to make use of it.
.Pp
The
.Nm
functions were mostly imported from
2002-12-27 12:15:40 +00:00
.Nx
and it is intended that they remain synced between the
two projects.
With that in mind there are several variable
definitions that can help in this regard.
They are:
.Bl -tag -width 4n
2004-07-09 10:08:03 +00:00
.It Va OSTYPE
Its value will be either
2004-07-09 10:08:03 +00:00
.Qq Li FreeBSD
or
2004-07-09 10:08:03 +00:00
.Qq Li NetBSD ,
depending on which OS it is running on.
2004-07-09 10:08:03 +00:00
.It Va SYSCTL
The path to the
.Xr sysctl 8
command.
2004-07-09 10:08:03 +00:00
.It Va SYSCTL_N
The path and argument list to display only the
.Xr sysctl 8
2004-07-09 10:08:03 +00:00
values instead of a
.Ar name Ns = Ns Ar value
pair.
.It Va SYSCTL_W
The path and argument to write or modify
.Xr sysctl 8
values.
.El
.Pp
The
.Nm
functions are accessed by sourcing
.Pa /etc/rc.subr
into the current shell.
.Pp
The following shell functions are available:
.Bl -tag -width 4n
2004-07-09 10:08:03 +00:00
.It Ic backup_file Ar action file current backup
Make a backup copy of
.Ar file
into
.Ar current .
If the
.Xr rc.conf 5
variable
2004-07-09 10:08:03 +00:00
.Va backup_uses_rcs
is
2004-07-09 10:08:03 +00:00
.Dq Li YES ,
use
.Xr rcs 1
to archive the previous version of
.Ar current ,
otherwise save the previous version of
.Ar current
as
.Ar backup .
.Pp
2004-07-09 10:08:03 +00:00
The
.Ar action
2004-07-09 10:08:03 +00:00
argument
may be one of the following:
2004-07-09 10:08:03 +00:00
.Bl -tag -width ".Cm remove"
.It Cm add
.Ar file
is now being backed up by or possibly re-entered into this backup mechanism.
.Ar current
is created, and if necessary, the
.Xr rcs 1
files are created as well.
2004-07-09 10:08:03 +00:00
.It Cm update
.Ar file
has changed and needs to be backed up.
If
.Ar current
exists, it is copied to
.Ar backup
or checked into
.Xr rcs 1
(if the repository file is old),
and then
.Ar file
is copied to
.Ar current .
2004-07-09 10:08:03 +00:00
.It Cm remove
.Ar file
is no longer being tracked by this backup mechanism.
If
.Xr rcs 1
is being used, an empty file is checked in and
.Ar current
is removed,
otherwise
.Ar current
is moved to
.Ar backup .
.El
.It Ic checkyesno Ar var
Return 0 if
.Ar var
is defined to
2004-07-09 10:08:03 +00:00
.Dq Li YES ,
.Dq Li TRUE ,
.Dq Li ON ,
or
2004-07-09 10:08:03 +00:00
.Ql 1 .
Return 1 if
.Ar var
is defined to
2004-07-09 10:08:03 +00:00
.Dq Li NO ,
.Dq Li FALSE ,
.Dq Li OFF ,
or
2004-07-09 10:08:03 +00:00
.Ql 0 .
Otherwise, warn that
.Ar var
is not set correctly.
The values are case insensitive.
2004-07-09 10:08:03 +00:00
.It Ic check_pidfile Ar pidfile procname Op Ar interpreter
Parses the first word of the first line of
.Ar pidfile
for a PID, and ensures that the process with that PID
is running and its first argument matches
.Ar procname .
Prints the matching PID if successful, otherwise nothing.
If
.Ar interpreter
is provided, parse the first line of
.Ar procname ,
ensure that the line is of the form:
2004-07-09 10:08:03 +00:00
.Pp
.Dl "#! interpreter [...]"
.Pp
and use
.Ar interpreter
with its optional arguments and
.Ar procname
appended as the process string to search for.
.It Ic check_process Ar procname Op Ar interpreter
Prints the PIDs of any processes that are running with a first
argument that matches
.Ar procname .
.Ar interpreter
is handled as per
.Ic check_pidfile .
.It Ic debug Ar message
Display a debugging message to
2004-07-09 10:08:03 +00:00
.Va stderr ,
log it to the system log using
.Xr logger 1 ,
and
return to the caller.
2002-12-27 12:15:40 +00:00
The error message consists of the script name
(from
2004-07-09 10:08:03 +00:00
.Va $0 ) ,
followed by
2004-07-09 10:08:03 +00:00
.Dq Li ": DEBUG: " ,
and then
.Ar message .
This function is intended to be used by developers
as an aid to debugging scripts.
It can be turned on or off
by the
.Xr rc.conf 5
variable
2004-07-09 10:08:03 +00:00
.Va rc_debug .
.It Ic err Ar exitval message
Display an error message to
2004-07-09 10:08:03 +00:00
.Va stderr ,
log it to the system log
using
.Xr logger 1 ,
and
2004-07-09 10:08:03 +00:00
.Ic exit
with an exit value of
.Ar exitval .
The error message consists of the script name
(from
2004-07-09 10:08:03 +00:00
.Va $0 ) ,
followed by
2004-07-09 10:08:03 +00:00
.Dq Li ": ERROR: " ,
and then
.Ar message .
.It Ic force_depend name
Output an advisory message and force the
.Ar name
service to start.
The
.Ar name
argument is the
2004-07-09 10:08:03 +00:00
.Xr basename 1
component of the path to the script, usually
2004-07-09 10:08:03 +00:00
.Pa /etc/rc.d/name .
If the script fails for any reason it will output a warning
and return with a return value of 1.
If it was successful
it will return 0.
.It Ic info Ar message
Display an informational message to
2004-07-09 10:08:03 +00:00
.Va stdout ,
and log it to the system log using
.Xr logger 1 .
The message consists of the script name
(from
2004-07-09 10:08:03 +00:00
.Va $0 ) ,
followed by
2004-07-09 10:08:03 +00:00
.Dq Li ": INFO: " ,
and then
2002-12-27 12:15:40 +00:00
.Ar message .
The display of this informational output can be
turned on or off by the
.Xr rc.conf 5
variable
2004-07-09 10:08:03 +00:00
.Va rc_info .
.It Ic load_kld Oo Fl e Ar regex Oc Oo Fl m Ar module Oc Ar file
Load
.Ar file
as a kernel module unless it is already loaded.
For the purpose of checking the module status,
either the exact module name can be specified using
.Fl m ,
or an
.Xr egrep 1
regular expression matching the module name can be supplied via
.Fl e .
By default, the module is assumed to have the same name as
.Ar file ,
which is not always the case.
.It Ic load_rc_config Ar name
Source in the configuration files for
.Ar name .
First,
.Pa /etc/rc.conf
is sourced if it has not yet been read in.
Then,
.Pa /etc/rc.conf.d/ Ns Ar name
is sourced if it is an existing file.
The latter may also contain other variable assignments to override
.Ic run_rc_command
arguments defined by the calling script, to provide an easy
mechanism for an administrator to override the behaviour of a given
.Xr rc.d 8
script without requiring the editing of that script.
.It Ic load_rc_config_var Ar name Ar var
Read the
.Xr rc.conf 5
variable
.Ar var
for
.Ar name
and set in the current shell, using
.Ic load_rc_config
in a sub-shell to prevent unwanted side effects from other variable
assignments.
.It Ic mount_critical_filesystems Ar type
Go through a list of critical file systems,
as found in the
.Xr rc.conf 5
variable
2004-07-09 10:08:03 +00:00
.Va critical_filesystems_ Ns Ar type ,
mounting each one that
is not currently mounted.
2004-07-09 10:08:03 +00:00
.It Ic rc_usage Ar command ...
Print a usage message for
2004-07-09 10:08:03 +00:00
.Va $0 ,
with
.Ar commands
being the list of valid arguments
prefixed by
2004-07-09 10:08:03 +00:00
.Sm off
.Dq Bq Li fast | force | one .
.Sm on
.It Ic reverse_list Ar item ...
Print the list of
.Ar items
in reverse order.
.It Ic run_rc_command Ar argument
Run the
.Ar argument
method for the current
.Xr rc.d 8
script, based on the settings of various shell variables.
.Ic run_rc_command
is extremely flexible, and allows fully functional
.Xr rc.d 8
scripts to be implemented in a small amount of shell code.
.Pp
.Ar argument
is searched for in the list of supported commands, which may be one
of:
2004-07-09 10:08:03 +00:00
.Bl -tag -width ".Cm restart" -offset indent
.It Cm start
Start the service.
This should check that the service is to be started as specified by
.Xr rc.conf 5 .
Also checks if the service is already running and refuses to start if
it is.
This latter check is not performed by standard
.Fx
scripts if the system is starting directly to multi-user mode, to
speed up the boot process.
2004-07-09 10:08:03 +00:00
.It Cm stop
If the service is to be started as specified by
.Xr rc.conf 5 ,
stop the service.
2004-07-09 10:08:03 +00:00
This should check that the service is running and complain if it is not.
.It Cm restart
Perform a
2004-07-09 10:08:03 +00:00
.Cm stop
then a
2004-07-09 10:08:03 +00:00
.Cm start .
Defaults to displaying the process ID of the program (if running).
2004-07-09 10:08:03 +00:00
.It Cm rcvar
Display which
.Xr rc.conf 5
variables are used to control the startup of the service (if any).
.El
.Pp
If
2004-07-09 10:08:03 +00:00
.Va pidfile
or
2004-07-09 10:08:03 +00:00
.Va procname
is set, also support:
2004-07-09 10:08:03 +00:00
.Bl -tag -width ".Cm restart" -offset indent
.It Cm poll
Wait for the command to exit.
2004-07-09 10:08:03 +00:00
.It Cm status
Show the status of the process.
.El
.Pp
Other supported commands are listed in the optional variable
2004-07-09 10:08:03 +00:00
.Va extra_commands .
.Pp
.Ar argument
may have one of the following prefixes which alters its operation:
2004-07-09 10:08:03 +00:00
.Bl -tag -width ".Li force" -offset indent
.It Li fast
Skip the check for an existing running process,
and sets
2004-07-09 10:08:03 +00:00
.Va rc_fast Ns = Ns Li YES .
.It Li force
Skip the checks for
2004-07-09 10:08:03 +00:00
.Va rcvar
being set to
.Dq Li YES ,
and sets
2004-07-09 10:08:03 +00:00
.Va rc_force Ns = Ns Li YES .
This ignores
2004-07-09 10:08:03 +00:00
.Ar argument Ns Va _precmd
returning non-zero, and ignores any of the
2004-07-09 10:08:03 +00:00
.Va required_*
tests failing, and always returns a zero exit status.
2004-07-09 10:08:03 +00:00
.It Li one
Skip the checks for
2004-07-09 10:08:03 +00:00
.Va rcvar
being set to
.Dq Li YES ,
but performs all the other prerequisite tests.
.El
.Pp
.Ic run_rc_command
uses the following shell variables to control its behaviour.
Unless otherwise stated, these are optional.
2004-07-09 10:08:03 +00:00
.Bl -tag -width ".Va procname" -offset indent
.It Va name
The name of this script.
This is not optional.
2004-07-09 10:08:03 +00:00
.It Va rcvar
The value of
2004-07-09 10:08:03 +00:00
.Va rcvar
is checked with
.Ic checkyesno
to determine if this method should be run.
2004-07-09 10:08:03 +00:00
.It Va command
Full path to the command.
Not required if
2004-07-09 10:08:03 +00:00
.Ar argument Ns Va _cmd
is defined for each supported keyword.
Can be overridden by
.Va ${name}_program .
2004-07-09 10:08:03 +00:00
.It Va command_args
Optional arguments and/or shell directives for
2004-07-09 10:08:03 +00:00
.Va command .
.It Va command_interpreter
.Va command
is started with:
2004-07-09 10:08:03 +00:00
.Pp
.Dl "#! command_interpreter [...]"
.Pp
which results in its
.Xr ps 1
command being:
2004-07-09 10:08:03 +00:00
.Pp
.Dl "command_interpreter [...] command"
.Pp
so use that string to find the PID(s) of the running command
rather than
2004-07-09 10:08:03 +00:00
.Va command .
.It Va extra_commands
Extra commands/keywords/arguments supported.
2004-07-09 10:08:03 +00:00
.It Va pidfile
Path to PID file.
Used to determine the PID(s) of the running command.
If
2004-07-09 10:08:03 +00:00
.Va pidfile
is set, use:
2004-07-09 10:08:03 +00:00
.Pp
.Dl "check_pidfile $pidfile $procname"
.Pp
to find the PID.
Otherwise, if
2004-07-09 10:08:03 +00:00
.Va command
is set, use:
2004-07-09 10:08:03 +00:00
.Pp
.Dl "check_process $procname"
.Pp
to find the PID.
2004-07-09 10:08:03 +00:00
.It Va procname
Process name to check for.
Defaults to the value of
2004-07-09 10:08:03 +00:00
.Va command .
.It Va required_dirs
Check for the existence of the listed directories
before running the
.Cm start
method.
2004-07-09 10:08:03 +00:00
.It Va required_files
Check for the readability of the listed files
before running the
.Cm start
method.
.It Va required_modules
Ensure that the listed kernel modules are loaded
before running the
.Cm start
method.
This is done after invoking the commands from
.Va start_precmd
so that the missing modules are not loaded in vain
if the preliminary commands indicate a error condition.
A word in the list can have an optional
.Dq Li : Ns Ar modname
or
.Dq Li ~ Ns Ar pattern
suffix.
The
.Ar modname
or
.Ar pattern
parameter is passed to
.Ic load_kld
through a
.Fl m
or
.Fl e
option, respectively.
See the description of
.Ic load_kld
in this document for details.
2004-07-09 10:08:03 +00:00
.It Va required_vars
Perform
.Ic checkyesno
on each of the list variables
before running the
.Cm start
method.
2004-07-09 10:08:03 +00:00
.It Va ${name}_chdir
Directory to
.Ic cd
to before running
2004-07-09 10:08:03 +00:00
.Va command ,
if
2004-07-09 10:08:03 +00:00
.Va ${name}_chroot
is not provided.
2004-07-09 10:08:03 +00:00
.It Va ${name}_chroot
Directory to
.Xr chroot 8
to before running
2004-07-09 10:08:03 +00:00
.Va command .
Only supported after
.Pa /usr
is mounted.
2004-07-09 10:08:03 +00:00
.It Va ${name}_flags
Arguments to call
2004-07-09 10:08:03 +00:00
.Va command
with.
This is usually set in
.Xr rc.conf 5 ,
and not in the
.Xr rc.d 8
script.
The environment variable
.Sq Ev flags
can be used to override this.
2004-07-09 10:08:03 +00:00
.It Va ${name}_nice
.Xr nice 1
level to run
2004-07-09 10:08:03 +00:00
.Va command
as.
Only supported after
.Pa /usr
is mounted.
.It Va ${name}_program
Full path to the command.
Overrides
.Va command
if both are set, but has no effect if
.Va command
is unset.
As a rule,
.Va command
should be set in the script while
.Va ${name}_program
should be set in
.Xr rc.conf 5 .
2004-07-09 10:08:03 +00:00
.It Va ${name}_user
User to run
2004-07-09 10:08:03 +00:00
.Va command
as, using
.Xr chroot 8 .
if
2004-07-09 10:08:03 +00:00
.Va ${name}_chroot
is set, otherwise
uses
.Xr su 1 .
Only supported after
.Pa /usr
is mounted.
2004-07-09 10:08:03 +00:00
.It Va ${name}_group
Group to run the chrooted
2004-07-09 10:08:03 +00:00
.Va command
as.
2004-07-09 10:08:03 +00:00
.It Va ${name}_groups
Comma separated list of supplementary groups to run the chrooted
2004-07-09 10:08:03 +00:00
.Va command
with.
2004-07-09 10:08:03 +00:00
.It Ar argument Ns Va _cmd
Shell commands which override the default method for
.Ar argument .
2004-07-09 10:08:03 +00:00
.It Ar argument Ns Va _precmd
Shell commands to run just before running
2004-07-09 10:08:03 +00:00
.Ar argument Ns Va _cmd
or the default method for
.Ar argument .
If this returns a non-zero exit code, the main method is not performed.
If the default method is being executed, this check is performed after
the
2004-07-09 10:08:03 +00:00
.Va required_*
checks and process (non-)existence checks.
2004-07-09 10:08:03 +00:00
.It Ar argument Ns Va _postcmd
Shell commands to run if running
2004-07-09 10:08:03 +00:00
.Ar argument Ns Va _cmd
or the default method for
2002-12-27 12:15:40 +00:00
.Ar argument
returned a zero exit code.
2004-07-09 10:08:03 +00:00
.It Va sig_stop
Signal to send the processes to stop in the default
2004-07-09 10:08:03 +00:00
.Cm stop
method.
Defaults to
.Dv SIGTERM .
2004-07-09 10:08:03 +00:00
.It Va sig_reload
Signal to send the processes to reload in the default
2004-07-09 10:08:03 +00:00
.Cm reload
method.
Defaults to
.Dv SIGHUP .
.El
.Pp
For a given method
.Ar argument ,
if
2004-07-09 10:08:03 +00:00
.Ar argument Ns Va _cmd
is not defined, then a default method is provided by
2004-07-09 10:08:03 +00:00
.Ic run_rc_command :
.Bl -tag -width ".Sy Argument" -offset indent
.It Sy Argument
.Sy Default method
2004-07-09 10:08:03 +00:00
.It Cm start
If
2004-07-09 10:08:03 +00:00
.Va command
is not running and
2004-07-09 10:08:03 +00:00
.Ic checkyesno Va rcvar
succeeds, start
2004-07-09 10:08:03 +00:00
.Va command .
.It Cm stop
Determine the PIDs of
2004-07-09 10:08:03 +00:00
.Va command
with
.Ic check_pidfile
or
.Ic check_process
(as appropriate),
2004-07-09 10:08:03 +00:00
.Ic kill Va sig_stop
those PIDs, and run
.Ic wait_for_pids
on those PIDs.
2004-07-09 10:08:03 +00:00
.It Cm reload
Similar to
2004-07-09 10:08:03 +00:00
.Cm stop ,
except that it uses
2004-07-09 10:08:03 +00:00
.Va sig_reload
instead, and does not run
.Ic wait_for_pids .
Another difference from
.Cm stop
is that
.Cm reload
is not provided by default.
It can be enabled via
.Va extra_commands
if appropriate:
.Pp
.Dl "extra_commands=reload"
2004-07-09 10:08:03 +00:00
.It Cm restart
Runs the
2004-07-09 10:08:03 +00:00
.Cm stop
method, then the
2004-07-09 10:08:03 +00:00
.Cm start
method.
2004-07-09 10:08:03 +00:00
.It Cm status
Show the PID of
2004-07-09 10:08:03 +00:00
.Va command ,
or some other script specific status operation.
2004-07-09 10:08:03 +00:00
.It Cm poll
Wait for
2004-07-09 10:08:03 +00:00
.Va command
to exit.
2004-07-09 10:08:03 +00:00
.It Cm rcvar
Display which
.Xr rc.conf 5
variable is used (if any).
This method always works, even if the appropriate
.Xr rc.conf 5
variable is set to
2004-07-09 10:08:03 +00:00
.Dq Li NO .
.El
.Pp
The following variables are available to the methods
(such as
2004-07-09 10:08:03 +00:00
.Ar argument Ns Va _cmd )
as well as after
.Ic run_rc_command
has completed:
2004-07-09 10:08:03 +00:00
.Bl -tag -width ".Va rc_flags" -offset indent
.It Va rc_arg
Argument provided to
2004-07-09 10:08:03 +00:00
.Ic run_rc_command ,
after fast and force processing has been performed.
2004-07-09 10:08:03 +00:00
.It Va rc_flags
2002-12-27 12:15:40 +00:00
Flags to start the default command with.
Defaults to
2004-07-09 10:08:03 +00:00
.Va ${name}_flags ,
unless overridden by the environment variable
.Sq Ev flags .
This variable may be changed by the
2004-07-09 10:08:03 +00:00
.Ar argument Ns Va _precmd
method.
2004-07-09 10:08:03 +00:00
.It Va rc_pid
PID of
2004-07-09 10:08:03 +00:00
.Va command
(if appropriate).
2004-07-09 10:08:03 +00:00
.It Va rc_fast
Not empty if
2004-07-09 10:08:03 +00:00
.Dq Li fast
prefix was used.
2004-07-09 10:08:03 +00:00
.It Va rc_force
Not empty if
2004-07-09 10:08:03 +00:00
.Dq Li force
prefix was used.
.El
2004-07-09 10:08:03 +00:00
.It Ic run_rc_script Ar file argument
Start the script
.Ar file
with an argument of
.Ar argument ,
and handle the return value from the script.
.Pp
Various shell variables are unset before
.Ar file
is started:
.Bd -ragged -offset indent
2004-07-09 10:08:03 +00:00
.Va name ,
.Va command ,
.Va command_args ,
.Va command_interpreter ,
.Va extra_commands ,
.Va pidfile ,
.Va rcvar ,
.Va required_dirs ,
.Va required_files ,
.Va required_vars ,
.Ar argument Ns Va _cmd ,
.Ar argument Ns Va _precmd .
.Ar argument Ns Va _postcmd .
.Ed
.Pp
The startup behaviour of
.Ar file
depends upon the following checks:
.Bl -enum
.It
If
.Ar file
ends in
.Pa .sh ,
it is sourced into the current shell.
.It
If
.Ar file
appears to be a backup or scratch file
(e.g., with a suffix of
2004-07-09 10:08:03 +00:00
.Pa ~ , # , .OLD ,
or
2004-07-09 10:08:03 +00:00
.Pa .orig ) ,
ignore it.
.It
If
.Ar file
is not executable, ignore it.
.It
If the
.Xr rc.conf 5
variable
2004-07-09 10:08:03 +00:00
.Va rc_fast_and_loose
is empty,
source
.Ar file
in a sub shell,
otherwise source
.Ar file
into the current shell.
.El
.It Ic set_rcvar Op Ar base
Set the variable name required to start a service.
In
.Fx
a daemon is usually controlled by an
.Xr rc.conf 5
variable consisting of a daemon's name postfixed by the string
2004-07-09 10:08:03 +00:00
.Dq Li "_enable" .
This is not the case in
.Nx .
When the following line is included in a script:
.Pp
2004-07-09 10:08:03 +00:00
.Dl "rcvar=`set_rcvar`"
.Pp
this function will use the value of the
2004-07-09 10:08:03 +00:00
.Va $name
variable, which should be defined by the calling script,
to construct the appropriate
.Xr rc.conf 5
knob.
If the
.Ar base
argument is set it will use
.Ar base
instead of
2004-07-09 10:08:03 +00:00
.Va $name .
.It Ic wait_for_pids Op Ar pid ...
Wait until all of the provided
.Ar pids
2004-07-09 10:08:03 +00:00
do not exist any more, printing the list of outstanding
.Ar pids
every two seconds.
.It Ic warn Ar message
Display a warning message to
2004-07-09 10:08:03 +00:00
.Va stderr
and log it to the system log
using
.Xr logger 1 .
The warning message consists of the script name
(from
2004-07-09 10:08:03 +00:00
.Va $0 ) ,
followed by
2004-07-09 10:08:03 +00:00
.Dq Li ": WARNING: " ,
and then
.Ar message .
.El
.Sh FILES
2004-07-09 10:08:03 +00:00
.Bl -tag -width ".Pa /etc/rc.subr" -compact
.It Pa /etc/rc.subr
The
.Nm
file resides in
.Pa /etc .
.El
.Sh SEE ALSO
.Xr rc.conf 5 ,
.Xr rc 8
.Sh HISTORY
2004-07-09 10:08:03 +00:00
The
.Nm
2004-07-09 10:08:03 +00:00
script
appeared in
.Nx 1.3 .
The
.Xr rc.d 8
support functions appeared in
.Nx 1.5 .
2004-07-09 10:08:03 +00:00
The
.Nm
2004-07-09 10:08:03 +00:00
script
first appeared in
.Fx 5.0 .