svn commit: r299242 - head/etc/defaults

Rick Macklem rmacklem at FreeBSD.org
Sun May 8 20:10:24 UTC 2016


Author: rmacklem
Date: Sun May  8 20:10:22 2016
New Revision: 299242
URL: https://svnweb.freebsd.org/changeset/base/299242

Log:
  Make "-S" a default option for mountd.
  
  After a discussion on freebsd-fs@ there seemed to be a consensus that
  the "-S" option for mountd should become the default.
  Since the only known issue w.r.t. using "-S" was fixed by r299201,
  this commit adds "-S" to the default mountd_flags.
  
  Discussed on:	freebsd-fs
  PR:		9619, 131342, 206855
  MFC after:	2 weeks
  Relnotes:	yes

Modified:
  head/etc/defaults/rc.conf

Modified: head/etc/defaults/rc.conf
==============================================================================
--- head/etc/defaults/rc.conf	Sun May  8 19:14:05 2016	(r299241)
+++ head/etc/defaults/rc.conf	Sun May  8 20:10:22 2016	(r299242)
@@ -329,7 +329,7 @@ nfs_server_enable="NO"		# This host is a
 nfs_server_flags="-u -t"	# Flags to nfsd (if enabled).
 nfs_server_managegids="NO"	# The NFS server maps gids for AUTH_SYS (or NO).
 mountd_enable="NO"		# Run mountd (or NO).
-mountd_flags="-r"		# Flags to mountd (if NFS server enabled).
+mountd_flags="-r -S"		# 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=""		# bufspace (in packets) for client


More information about the svn-src-all mailing list