diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-10-13 21:49:16 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-10-13 21:49:16 +0000 |
commit | 110e2c41f56a076fd14a0b7979920d49d31188d1 (patch) | |
tree | 7b3e0f07a9c29bfef49c2acdf14e3bb5e58fce18 /share/man | |
parent | e5c6c2d4a510c74c64e850422c7439b8a24ddb5a (diff) |
support an include directive; file of course must also be "secure" like
the main configuration file; ok henning
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man5/pf.conf.5 | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/share/man/man5/pf.conf.5 b/share/man/man5/pf.conf.5 index 18d73b36a08..1bc8afff8d8 100644 --- a/share/man/man5/pf.conf.5 +++ b/share/man/man5/pf.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pf.conf.5,v 1.386 2007/09/30 20:12:22 henning Exp $ +.\" $OpenBSD: pf.conf.5,v 1.387 2007/10/13 21:49:15 deraadt Exp $ .\" .\" Copyright (c) 2002, Daniel Hartmeier .\" All rights reserved. @@ -27,7 +27,7 @@ .\" ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: September 30 2007 $ +.Dd $Mdocdate: October 13 2007 $ .Dt PF.CONF 5 .Os .Sh NAME @@ -78,6 +78,17 @@ By default enforces this order (see .Ar set require-order below). +.Pp +Comments can be put anywhere in the file using a hash mark +.Pq Sq # , +and extend to the end of the current line. +.Pp +Additional configuration files can be included with the +.Ic include +keyword, for example: +.Bd -literal -offset indent +include "/etc/pf/sub.filter.conf" +.Ed .Sh MACROS Macros can be defined that will later be expanded in context. Macro names must start with a letter, and may contain letters, digits |