Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Jun 2009 09:42:30 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
Subject:   svn commit: r194339 - in stable/7/etc: . defaults mtree rc.d
Message-ID:  <200906170942.n5H9gUi7069088@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: avg
Date: Wed Jun 17 09:42:30 2009
New Revision: 194339
URL: http://svn.freebsd.org/changeset/base/194339

Log:
  MFC r193944: rc.d/fsck: allow additional options via fsck_y_flags

Modified:
  stable/7/etc/   (props changed)
  stable/7/etc/defaults/rc.conf
  stable/7/etc/mtree/   (props changed)
  stable/7/etc/rc.d/   (props changed)
  stable/7/etc/rc.d/fsck

Modified: stable/7/etc/defaults/rc.conf
==============================================================================
--- stable/7/etc/defaults/rc.conf	Wed Jun 17 09:29:18 2009	(r194338)
+++ stable/7/etc/defaults/rc.conf	Wed Jun 17 09:42:30 2009	(r194339)
@@ -83,6 +83,7 @@ geli_swap_flags="-e aes -l 256 -s 4096 -
 
 root_rw_mount="YES"	# Set to NO to inhibit remounting root read-write.
 fsck_y_enable="NO"	# Set to YES to do fsck -y if the initial preen fails.
+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.

Modified: stable/7/etc/rc.d/fsck
==============================================================================
--- stable/7/etc/rc.d/fsck	Wed Jun 17 09:29:18 2009	(r194338)
+++ stable/7/etc/rc.d/fsck	Wed Jun 17 09:42:30 2009	(r194339)
@@ -44,8 +44,8 @@ fsck_start()
 			;;
 		8)
 			if checkyesno fsck_y_enable; then
-				echo "File system preen failed, trying fsck -y."
-				fsck -y
+				echo "File system preen failed, trying fsck -y ${fsck_y_flags}"
+				fsck -y ${fsck_y_flags}
 				case $? in
 				0)
 					;;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906170942.n5H9gUi7069088>