diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-12-28 16:21:05 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-12-28 16:21:05 +0000 |
commit | 73f47df01bd8da41b07edcc6891d91f62604c3b4 (patch) | |
tree | 2ad065826689d79c6513c19c5fd71f3c786cf118 /share | |
parent | 095e90d45ec53e9b03a796504b0fb19a77a38241 (diff) |
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.
Diffstat (limited to 'share')
-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 |