summaryrefslogtreecommitdiff
path: root/share/man/man8
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2011-02-17 18:22:45 +0000
committerMarc Espie <espie@cvs.openbsd.org>2011-02-17 18:22:45 +0000
commit2e37b816c21981c412db45b5cfbcf4367972d249 (patch)
tree64fde7000abfbdd5a9e16b0640734d8d6fb6796b /share/man/man8
parentf3377703636f0e19faf7dcdc209ac0aede87f3f4 (diff)
split along user/implementation lines.
After lots of back and forth with jmc@ and schwarze. okay miod@
Diffstat (limited to 'share/man/man8')
-rw-r--r--share/man/man8/Makefile5
-rw-r--r--share/man/man8/rc.d.8122
-rw-r--r--share/man/man8/rc.subr.8135
3 files changed, 175 insertions, 87 deletions
diff --git a/share/man/man8/Makefile b/share/man/man8/Makefile
index 8e728b0270d..b9f93c9d430 100644
--- a/share/man/man8/Makefile
+++ b/share/man/man8/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.74 2011/01/16 14:20:54 robert Exp $
+# $OpenBSD: Makefile,v 1.75 2011/02/17 18:22:44 espie Exp $
# $NetBSD: Makefile,v 1.13 1996/03/28 21:36:40 mark Exp $
# @(#)Makefile 8.1 (Berkeley) 6/5/93
@@ -6,14 +6,13 @@ MAN= afterboot.8 boot_config.8 compat_aout.8 \
compat_freebsd.8 compat_linux.8 \
compat_svr4.8 crash.8 daily.8 dhcp.8 \
diskless.8 genassym.sh.8 intro.8 netstart.8 rc.8 \
- rc.conf.8 rc.shutdown.8 rc.subr.8 release.8 \
+ rc.conf.8 rc.d.8 rc.shutdown.8 rc.subr.8 release.8 \
security.8 ssl.8 starttls.8 sticky.8 update.8 yp.8
MLINKS+=boot_config.8 UKC.8
MLINKS+=daily.8 weekly.8 daily.8 monthly.8
MLINKS+=rc.8 rc.local.8 rc.8 rc.securelevel.8
MLINKS+=rc.conf.8 rc.conf.local.8
-MLINKS+=rc.subr.8 rc.d.8
SUBDIR= man8.alpha man8.amd64 man8.armish man8.aviion man8.hp300 \
man8.hppa man8.hppa64 man8.i386 man8.landisk man8.loongson \
diff --git a/share/man/man8/rc.d.8 b/share/man/man8/rc.d.8
new file mode 100644
index 00000000000..2a1f9ba8a72
--- /dev/null
+++ b/share/man/man8/rc.d.8
@@ -0,0 +1,122 @@
+.\" $OpenBSD: rc.d.8,v 1.1 2011/02/17 18:22:44 espie Exp $
+.\"
+.\" Copyright (c) 2011 Robert Nagy, Antoine Jacoutot, Ingo Schwarze
+.\" All rights reserved.
+.\"
+.\" 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.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 AUTHORS 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.
+.\"
+.Dd $Mdocdate: February 17 2011 $
+.Dt RC.D 8
+.Os
+.Sh NAME
+.Nm rc.d
+.Nd daemon control scripts
+.Sh SYNOPSIS
+.Nm /etc/rc.d/ Ns Ar daemond action
+.Sh DESCRIPTION
+The
+.Pa /etc/rc.d
+directory contains shell scripts to start, stop, and reconfigure daemon
+programs
+.Pq Dq services .
+Currently, it is only used for daemons installed from
+.Xr packages 7 ,
+and not for the
+.Ox
+base system.
+.Pp
+Those services may be started at boot time in the order specified by the
+.Va rc_scripts
+variable from
+.Xr rc.conf 8 ,
+the order will be reversed during shutdown.
+.Pp
+Each such script responds to the following
+.Ar actions :
+.Pp
+.Bl -tag -width restart -offset indent -compact
+.It Cm start
+Start the service, if not already running.
+.It Cm stop
+Stop the service.
+.It Cm reload
+Tell the daemon to reload its configuration.
+.It Cm restart
+Perform a stop, then a start.
+.It Cm check
+Return 0 if the daemon is running or 1 if it is not.
+.El
+.Pp
+Each script defines its own defaults, some of which can be overridden
+by site-specific values provided in
+.Xr rc.conf.local 8
+.Po
+variable names are obtained by replacing
+.Ar daemon
+with the name of the actual service
+.Pc :
+.Pp
+.Bl -tag -width daemon_flags -offset indent -compact
+.It Ar daemon Ns _flags
+Arguments to call
+.Nm daemon
+with.
+.It Ar daemon Ns _user
+User to run
+.Nm daemon
+as, using
+.Xr su 1 .
+.El
+.Pp
+For example, postgres is managed through
+.Pa /etc/rc.d/postgresqld .
+To run the daemon using a site-specific user account, define the following in
+.Xr rc.conf.local 8 :
+.Pp
+.Dl postgresql_user=mypgsqluser
+.Sh FILES
+.Bl -tag -width Ds
+.It Pa /etc/rc.d/
+Directory containing daemon control scripts.
+.It Pa /etc/rc.d/rc.subr
+Functions and variables used by
+.Nm rc.d
+scripts.
+.El
+.Sh SEE ALSO
+.Xr rc 8 ,
+.Xr rc.conf 8 ,
+.Xr rc.subr 8
+.Sh HISTORY
+The
+.Pa /etc/rc.d
+directory
+first appeared in
+.Ox 4.9 .
+.Sh BUGS
+Changing flag values will change the corresponding pattern used with
+.Xr pkill 1 ,
+so that
+.Ar stop
+or
+.Ar reload
+may not work afterwards.
diff --git a/share/man/man8/rc.subr.8 b/share/man/man8/rc.subr.8
index a3c2b9966c6..e35a00f67f4 100644
--- a/share/man/man8/rc.subr.8
+++ b/share/man/man8/rc.subr.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: rc.subr.8,v 1.6 2011/02/12 11:22:31 ajacoutot Exp $
+.\" $OpenBSD: rc.subr.8,v 1.7 2011/02/17 18:22:44 espie Exp $
.\"
.\" Copyright (c) 2011 Robert Nagy, Antoine Jacoutot, Ingo Schwarze
.\" All rights reserved.
@@ -24,13 +24,12 @@
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: February 12 2011 $
+.Dd $Mdocdate: February 17 2011 $
.Dt RC.SUBR 8
.Os
.Sh NAME
-.Nm rc.subr ,
-.Nm rc.d
-.Nd daemon control scripts
+.Nm rc.subr
+.Nd daemon control scripts routines
.Sh SYNOPSIS
.Nm daemon Ns = Ns Ar path_to_executable
.Nm .\&
@@ -38,30 +37,9 @@
.Nm rc_cmd
.Ar action
.Sh DESCRIPTION
-The
-.Nm rc.d
-directory contains shell scripts to start, stop, and reconfigure daemon
-programs.
-It is currently used for daemons installed from
-.Xr packages 7
-only, not for daemons contained in the
-.Ox
-base system.
-The order in which scripts are started and stopped at boot time and
-shutdown is defined by the
-.Va rc_scripts
-variable in
-.Xr rc.conf 8 .
-.Pp
-The
-.Nm
-script defines shell functions and variables used by
-.Nm rc.d
-scripts.
-.Pp
-Each
-.Nm rc.d
-script consists of the following parts, always given in the following order:
+Every script under
+.Pa /etc/rc.d
+follows the following pattern:
.Pp
.Bl -enum -compact
.It
@@ -69,32 +47,33 @@ Define the
.Va daemon
variable.
.It
-Optionally define service-specific defaults for one or more
+Define service-specific defaults for one or more
.Va daemon_*
-variables.
+variables (optional).
.It
-Source the
-.Nm
-script.
+Source
+.Nm ,
+which defines default shell functions and variable values.
.It
-Optionally override the
+Override the
.Va pexp
or
.Va rc_reload
-variables or any of the
+variables
+or any of the
.Ic rc_*
-functions.
-Optionally define an
+functions, if needed.
+.It
+Define an
.Ic rc_pre
and/or
.Ic rc_post
-function.
+function, if needed.
.It
Call the
.Ic rc_cmd
-function, passing through the
-.Ar action
-argument.
+function as
+.Dq "rc_cmd $0" .
.El
.Pp
The following shell functions are defined by
@@ -137,34 +116,30 @@ or
.Cm check ,
each running one of the functions described below.
.It Ic rc_start
-Start the service.
-It checks if the service is already running by calling
-.Ar rc_check
-and refuses to start if it is.
-In addition if the
+Check whether the service is already running by calling
+.Ar rc_check ,
+If it's not running, call
.Fn rc_pre
-function exists, it is called before
-starting the daemon.
+if it exists, then start the daemon.
.It Ic rc_stop
-It checks that the service is running by calling
-.Ar rc_check
-and if it's not, no action is taken.
-In addition if the
+Check that the service is running by calling
+.Ar rc_check .
+If it is running, stop the daemon,
+then call
.Fn rc_post
-function exists, it is called right
-after the daemon has been stopped.
+if it exists.
.It Ic rc_reload
-Find the process using
+Send a
+.Dv SIGHUP
+signal using
.Xr pkill 1
-with the regular expression as specified in the
+on the regular expression given in the
.Ar pexp
-variable and send a
-.Dv SIGHUP
-signal.
+variable.
One has to make sure that sending
.Dv SIGHUP
to a daemon will have the desired effect,
-which is reloading the configuration files.
+that is, that it will reload its configuration.
.It Ic rc_restart
Perform a
.Cm stop
@@ -208,8 +183,6 @@ for a login class that has the same name as the
.Nm rc.d
script itself and uses that.
If no such login class exists then daemon will be used.
-This variable cannot be overridden from
-.Xr rc.conf.local 8 .
.It Va daemon_shell
Shell to run the
.Va daemon
@@ -232,8 +205,6 @@ script has to redefine this variable
.Em after
sourcing
.Nm .
-This variable cannot be overridden from
-.Xr rc.conf.local 8 .
.It Va rc_reload
Can be set to
.Cm NO
@@ -249,10 +220,10 @@ The same is possible, but almost never useful, for other actions.
.Pp
All
.Va daemon_*
-variables can be set in three ways:
+variables are set in the following ways:
.Bl -enum
.It
-The global defaults are provided by
+Global defaults are provided by
.Nm :
.Bd -literal -offset indent
daemon_class=daemon
@@ -267,22 +238,17 @@ script
.Em before
sourcing
.Nm ,
-overriding the global defaults.
+thus overriding the global defaults.
.It
-Site-specific values provided in
+As noted in
+.Xr rc.d 8 ,
+site-specific values provided in
.Xr rc.conf.local 8
-override all defaults.
-These are defined by replacing the string "daemon" in the variable name
-by the name of the respective
-.Nm rc.d
-script.
-For example, to run the postgres database daemon using a site-specific
-user account, define
-.Pp
-.Dl postgresql_user=mypgsqluser
-.Pp
-in
-.Xr rc.conf.local 8 .
+for
+.Va daemon_flags
+and
+.Va daemon_user
+will override those defaults.
.El
.Sh FILES
.Bl -tag -width Ds
@@ -299,17 +265,18 @@ script.
.El
.Sh SEE ALSO
.Xr rc 8 ,
-.Xr rc.conf 8
+.Xr rc.conf 8 ,
+.Xr rc.d 8
.Sh HISTORY
The
.Nm
-script
+framework
first appeared in
.Ox 4.9 .
.Sh AUTHORS
.An -nosplit
The
-.Nm rc.subr
+.Nm
framework was written by
.An Robert Nagy Aq robert@openbsd.org ,
.An Antoine Jacoutot Aq ajacoutot@openbsd.org ,