From swell.k@gmail.com  Mon Jan  3 18:16:27 2011
Return-Path: <swell.k@gmail.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id F0770106566B
	for <FreeBSD-gnats-submit@freebsd.org>; Mon,  3 Jan 2011 18:16:27 +0000 (UTC)
	(envelope-from swell.k@gmail.com)
Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182])
	by mx1.freebsd.org (Postfix) with ESMTP id 85D7D8FC18
	for <FreeBSD-gnats-submit@freebsd.org>; Mon,  3 Jan 2011 18:16:27 +0000 (UTC)
Received: by wyf19 with SMTP id 19so13546616wyf.13
        for <FreeBSD-gnats-submit@freebsd.org>; Mon, 03 Jan 2011 10:16:26 -0800 (PST)
Received: by 10.216.13.134 with SMTP id b6mr24249677web.25.1294078586412;
        Mon, 03 Jan 2011 10:16:26 -0800 (PST)
Received: from localhost (server51262.uk2net.com [83.170.92.9])
        by mx.google.com with ESMTPS id n1sm10016211weq.31.2011.01.03.10.16.23
        (version=SSLv3 cipher=RC4-MD5);
        Mon, 03 Jan 2011 10:16:25 -0800 (PST)
Message-Id: <86aajh7t21.fsf@gmail.com>
Date: Mon, 03 Jan 2011 21:15:02 +0300
From: Anonymous <swell.k@gmail.com>
To: FreeBSD-gnats-submit@freebsd.org
Subject: [rc.d][patch] substitute nfs4 with newnfs in netfs_types

>Number:         153655
>Category:       conf
>Synopsis:       [rc.d][patch] substitute nfs4 with newnfs in netfs_types
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    jh
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jan 03 18:20:07 UTC 2011
>Closed-Date:    Wed Feb 02 17:46:34 UTC 2011
>Last-Modified:  Wed Feb 02 17:46:34 UTC 2011
>Originator:     Anonymous
>Release:        FreeBSD 9.0-CURRENT amd64
>Organization:
>Environment:
>Description:
- 'nfs4' fstype was removed per r192578 (2009-05-22)
- 'newnfs' fstype was added per r192930 (2009-05-27)
>How-To-Repeat:
>Fix:
--- a.diff begins here ---
Index: etc/defaults/rc.conf
===================================================================
--- etc/defaults/rc.conf	(revision 216917)
+++ etc/defaults/rc.conf	(working copy)
@@ -89,7 +92,7 @@
 fsck_y_flags=""		# Additional flags for fsck -y
 background_fsck="YES"	# Attempt to run fsck in the background where possible.
 background_fsck_delay="60" # Time to wait (seconds) before starting the fsck.
-netfs_types="nfs:NFS nfs4:NFS4 smbfs:SMB portalfs:PORTAL nwfs:NWFS" # Net filesystems.
+netfs_types="nfs:NFS newnfs:NEWNFS smbfs:SMB portalfs:PORTAL nwfs:NWFS" # Net filesystems.
 extra_netfs_types="NO"	# List of network extra filesystem types for delayed
 			# mount at startup (or NO).
 
--- a.diff ends here ---
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-rc->jh 
Responsible-Changed-By: jh 
Responsible-Changed-When: Sun Jan 9 09:15:50 UTC 2011 
Responsible-Changed-Why:  
Take. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=153655 
State-Changed-From-To: open->patched 
State-Changed-By: jh 
State-Changed-When: Sun Jan 9 09:25:40 UTC 2011 
State-Changed-Why:  
Patched in head (r217187). Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=153655 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: conf/153655: commit references a PR
Date: Sun,  9 Jan 2011 09:21:17 +0000 (UTC)

 Author: jh
 Date: Sun Jan  9 09:21:11 2011
 New Revision: 217187
 URL: http://svn.freebsd.org/changeset/base/217187
 
 Log:
   Replace nfs4 with newnfs in netfs_types. nfs4 was removed in r192578 and
   mount(8) has supported newnfs since r192930.
   
   PR:		conf/153655
   Submitted by:	Anonymous <swell.k@gmail.com>
   MFC after:	3 weeks
 
 Modified:
   head/etc/defaults/rc.conf
 
 Modified: head/etc/defaults/rc.conf
 ==============================================================================
 --- head/etc/defaults/rc.conf	Sun Jan  9 08:54:57 2011	(r217186)
 +++ head/etc/defaults/rc.conf	Sun Jan  9 09:21:11 2011	(r217187)
 @@ -89,7 +89,7 @@ fsck_y_enable="NO"	# Set to YES to do fs
  fsck_y_flags=""		# Additional flags for fsck -y
  background_fsck="YES"	# Attempt to run fsck in the background where possible.
  background_fsck_delay="60" # Time to wait (seconds) before starting the fsck.
 -netfs_types="nfs:NFS nfs4:NFS4 smbfs:SMB portalfs:PORTAL nwfs:NWFS" # Net filesystems.
 +netfs_types="nfs:NFS newnfs:NEWNFS smbfs:SMB portalfs:PORTAL nwfs:NWFS" # Net filesystems.
  extra_netfs_types="NO"	# List of network extra filesystem types for delayed
  			# mount at startup (or NO).
  
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: conf/153655: commit references a PR
Date: Wed,  2 Feb 2011 17:31:06 +0000 (UTC)

 Author: jh
 Date: Wed Feb  2 17:31:01 2011
 New Revision: 218197
 URL: http://svn.freebsd.org/changeset/base/218197
 
 Log:
   MFC r217187:
   
   Replace nfs4 with newnfs in netfs_types. nfs4 was removed in r192578 and
   mount(8) has supported newnfs since r192930.
   
   PR:		conf/153655
 
 Modified:
   stable/8/etc/defaults/rc.conf
 Directory Properties:
   stable/8/etc/   (props changed)
 
 Modified: stable/8/etc/defaults/rc.conf
 ==============================================================================
 --- stable/8/etc/defaults/rc.conf	Wed Feb  2 17:01:26 2011	(r218196)
 +++ stable/8/etc/defaults/rc.conf	Wed Feb  2 17:31:01 2011	(r218197)
 @@ -89,7 +89,7 @@ fsck_y_enable="NO"	# Set to YES to do fs
  fsck_y_flags=""		# Additional flags for fsck -y
  background_fsck="YES"	# Attempt to run fsck in the background where possible.
  background_fsck_delay="60" # Time to wait (seconds) before starting the fsck.
 -netfs_types="nfs:NFS nfs4:NFS4 smbfs:SMB portalfs:PORTAL nwfs:NWFS" # Net filesystems.
 +netfs_types="nfs:NFS newnfs:NEWNFS smbfs:SMB portalfs:PORTAL nwfs:NWFS" # Net filesystems.
  extra_netfs_types="NO"	# List of network extra filesystem types for delayed
  			# mount at startup (or NO).
  
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: patched->closed 
State-Changed-By: jh 
State-Changed-When: Wed Feb 2 17:46:33 UTC 2011 
State-Changed-Why:  
Fixed in affected branches. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=153655 
>Unformatted:
