diff options
author | gshapiro <gshapiro@FreeBSD.org> | 2003-02-08 20:55:56 +0000 |
---|---|---|
committer | gshapiro <gshapiro@FreeBSD.org> | 2003-02-08 20:55:56 +0000 |
commit | d908e50a425a88e91f5fc9097b6e82ef6179f46c (patch) | |
tree | 4e3408e245baa75e3c95c387efa7771f8f1df431 | |
parent | d5b741d9d986620ea5efe8dd0007693173aec0a6 (diff) | |
download | FreeBSD-src-d908e50a425a88e91f5fc9097b6e82ef6179f46c.zip FreeBSD-src-d908e50a425a88e91f5fc9097b6e82ef6179f46c.tar.gz |
/etc/rc.network isn't built to handle a value of "DEFAULT" (nor should it
be). Using that string leads rc.network to execute:
# sysctl -w vfs.nfs.bufpackets=DEFAULT
vfs.nfs.bufpackets: 4 -> 0
Which isn't what was intended.
PR: conf/31280
MFC after: 3 days
-rw-r--r-- | etc/defaults/rc.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf index 487f7db..13ab293 100644 --- a/etc/defaults/rc.conf +++ b/etc/defaults/rc.conf @@ -185,7 +185,7 @@ mountd_enable="NO" # Run mountd (or NO). mountd_flags="-r" # Flags to mountd (if NFS server enabled). weak_mountd_authentication="NO" # Allow non-root mount requests to be served. nfs_reserved_port_only="NO" # Provide NFS only on secure port (or NO). -nfs_bufpackets="DEFAULT" # bufspace (in packets) for client (or DEFAULT) +nfs_bufpackets="" # bufspace (in packets) for client rpc_lockd_enable="NO" # Run NFS rpc.lockd needed for client/server. rpc_statd_enable="NO" # Run NFS rpc.statd needed for client/server. rpcbind_enable="NO" # Run the portmapper service (YES/NO). |