diff options
author | 2001-12-28 16:21:04 +0000 | |
---|---|---|
committer | 2001-12-28 16:21:04 +0000 | |
commit | 04965ec01b87fba29c64113b4ebd0f82ff182212 (patch) | |
tree | 7355837dd89c6fca5684eca4864b6112be2dc208 | |
parent | remove plen from the dispatch fn. it's no longer used. (diff) | |
download | wireguard-openbsd-04965ec01b87fba29c64113b4ebd0f82ff182212.tar.xz wireguard-openbsd-04965ec01b87fba29c64113b4ebd0f82ff182212.zip |
Use lpd as an example, not sendmail. This has been sitting in my
tree for some time and I don't recall whether it is home-grown or
came from someone else.
-rw-r--r-- | share/man/man8/rc.8 | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/share/man/man8/rc.8 b/share/man/man8/rc.8 index ff60b0b987a..73e7a33be8b 100644 --- a/share/man/man8/rc.8 +++ b/share/man/man8/rc.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: rc.8,v 1.17 2001/10/05 14:45:54 mpech Exp $ +.\" $OpenBSD: rc.8,v 1.18 2001/12/28 16:21:04 millert Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -157,20 +157,28 @@ Refer to the specific man pages for each daemon to determine what that subsystem does. .Pp For example, the -.Xr sendmail 8 +.Xr lpd 8 daemon is controlled by the line .Bd -literal - sendmail_flags=NO # for normal use: sendmail_flags="-bd -q30m" + lpd_flags=NO # for normal use: "" (or "-l" for debugging) .Ed .Pp This does not start -.Xr sendmail 8 +.Xr lpd 8 at system startup. -But -.Xr sendmail 8 -is started with the specified flags if the specification is modified to be +To start +.Xr lpd 8 , +the following entry can be used. .Bd -literal - sendmail_flags="-bd -q30m" # for 'normal' use: sendmail_flags="-bd -q30m" + lpd_flags="" # for normal use: "" (or "-l" for debugging) +.Ed +Alternately, +.Xr lpd 8 +can be started with the +.Fl l +flag (to log remote connections). +.Bd -literal + lpd_flags="-l" # for normal use: "" (or "-l" for debugging) .Ed .Sh EXTERNAL INFLUENCES Before |