diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-08-22 16:13:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-08-22 16:13:15 +0000 |
commit | 6a9c746ebaec9cf302127fcb4db0734d5b9ef7e4 (patch) | |
tree | 788845c870d55f90a27085f1659a6fee881a08dc /etc | |
parent | f54ad8318a7799796cd40fb5564f5bf730fa21db (diff) |
pflogd_flags; mbing@nfr.net
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc | 4 | ||||
-rw-r--r-- | etc/rc.conf | 3 |
2 files changed, 4 insertions, 3 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.181 2001/08/22 07:11:17 deraadt Exp $ +# $OpenBSD: rc,v 1.182 2001/08/22 16:13:14 deraadt Exp $ # System startup script run by init on autoboot # or after single-user. @@ -149,7 +149,7 @@ mount /var >/dev/null 2>&1 if [ "X$pf" != X"NO" ]; then ifconfig pflog0 up - pflogd + pflogd ${pflogd_flags} fi # if there's no /var/db/host.random, make one through /dev/urandom diff --git a/etc/rc.conf b/etc/rc.conf index 3179b9283fd..3ea5da3bbce 100644 --- a/etc/rc.conf +++ b/etc/rc.conf @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: rc.conf,v 1.67 2001/08/17 22:00:12 deraadt Exp $ +# $OpenBSD: rc.conf,v 1.68 2001/08/22 16:13:14 deraadt Exp $ # set these to "NO" to turn them off. otherwise, they're used as flags routed_flags=NO # for normal use: "-q" @@ -80,6 +80,7 @@ named_user=named # Named should not run as root unless necessary named_chroot=/var/named # Where to chroot named if not empty pf_rules=/etc/pf.conf # Packet filter rules file nat_rules=/etc/nat.conf # NAT rules file +pflogd_flags= # add more flags, ie. "-s 256" afs_mount_point=/afs # Mountpoint for AFS afs_device=/dev/xfs0 # Device used by afsd afsd_flags=-z # Flags passed to afsd |