summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2009-04-17 17:17:04 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2009-04-17 17:17:04 +0000
commit27020739510cbeaa433db25f3eae3e47b1bdacdc (patch)
tree174b60dfaf3678246c2add1246cea559992379ab /etc
parenta7f92c5e88155c01d0de5b03626d3cbac8bc57d3 (diff)
a scrub was hiding here when nfs was enabled. since we want the no-df
behaviour here replace by an explicit set reassemble yes no-df. noticed by Valery Masiutsin <val.masutin at gmail dot com>
Diffstat (limited to 'etc')
-rw-r--r--etc/rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc b/etc/rc
index 02f29bd4623..69b827cb9e9 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,4 +1,4 @@
-# $OpenBSD: rc,v 1.323 2009/03/16 23:18:45 jacekm Exp $
+# $OpenBSD: rc,v 1.324 2009/04/17 17:17:03 henning Exp $
# System startup script run by init on autoboot
# or after single-user.
@@ -272,7 +272,7 @@ if [ X"${pf}" != X"NO" ]; then
case `sysctl vfs.mounts.nfs 2>/dev/null` in
*[1-9]*)
# don't kill NFS
- RULES="scrub in all no-df\n$RULES"
+ RULES="set reassemble yes no-df\n$RULES"
RULES="$RULES\npass in proto { tcp, udp } from any port { 111, 2049 } to any"
RULES="$RULES\npass out proto { tcp, udp } from any to any port { 111, 2049 }"
;;