Drop quotes and mention that 3 and not 2 variables can be overridden.
authorajacoutot <ajacoutot@openbsd.org>
Tue, 22 Jul 2014 08:48:07 +0000 (08:48 +0000)
committerajacoutot <ajacoutot@openbsd.org>
Tue, 22 Jul 2014 08:48:07 +0000 (08:48 +0000)
ok robert@

share/man/man8/rc.d.8

index 9aa0672..82f1d1d 100644 (file)
@@ -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 .