summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorajacoutot <ajacoutot@openbsd.org>2014-07-22 08:48:07 +0000
committerajacoutot <ajacoutot@openbsd.org>2014-07-22 08:48:07 +0000
commitff1f53a328da1eae1c564b3f38df88ada40b46b1 (patch)
tree5b3bd72dca826c0dd18414535c33cc4ee5c3c003
parentTweak after recebt rc.securelevel change. (diff)
downloadwireguard-openbsd-ff1f53a328da1eae1c564b3f38df88ada40b46b1.tar.xz
wireguard-openbsd-ff1f53a328da1eae1c564b3f38df88ada40b46b1.zip
Drop quotes and mention that 3 and not 2 variables can be overridden.
ok robert@
-rw-r--r--share/man/man8/rc.d.810
1 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man8/rc.d.8 b/share/man/man8/rc.d.8
index 9aa06727467..82f1d1d8346 100644
--- a/share/man/man8/rc.d.8
+++ b/share/man/man8/rc.d.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: rc.d.8,v 1.25 2014/07/09 14:19:22 ajacoutot Exp $
+.\" $OpenBSD: rc.d.8,v 1.26 2014/07/22 08:48:07 ajacoutot Exp $
.\"
.\" Copyright (c) 2011 Robert Nagy, Antoine Jacoutot, Ingo Schwarze
.\" All rights reserved.
@@ -24,7 +24,7 @@
.\" (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: July 9 2014 $
+.Dd $Mdocdate: July 22 2014 $
.Dt RC.D 8
.Os
.Sh NAME
@@ -96,7 +96,7 @@ Return 0 if the daemon is running or 1 if it is not.
Daemon control scripts use a fixed number of
.Xr sh 1
variables when starting a daemon.
-The following two can be overridden by site-specific values provided in
+The following three can be overridden by site-specific values provided in
.Xr rc.conf.local 8 :
.Bl -tag -width daemon_timeout -offset indent
.It Ar daemon Ns _flags
@@ -128,13 +128,13 @@ with the name of the script.
For example, postgres is managed through
.Pa /etc/rc.d/postgresql :
.Pp
-.Dl daemon_flags="-l /var/postgresql/logfile"
+.Dl daemon_flags=-l /var/postgresql/logfile
.Pp
To override this and increase the debug log level (keeping the existing
logfile path), define the following in
.Xr rc.conf.local 8 :
.Pp
-.Dl postgresql_flags="-l /var/postgresql/logfile -d 5"
+.Dl postgresql_flags=-l /var/postgresql/logfile -d 5
.Pp
Each script may define its own defaults, as explained in
.Xr rc.subr 8 .