mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 14:49:36 -04:00
/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
This commit is contained in:
parent
b4e41c1278
commit
5a8562abaf
1 changed files with 1 additions and 1 deletions
|
|
@ -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).
|
||||
|
|
|
|||
Loading…
Reference in a new issue