From maurice@sphinx.clari.net.au  Wed Sep  7 01:38:35 2005
Return-Path: <maurice@sphinx.clari.net.au>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 603D716A41F
	for <FreeBSD-gnats-submit@freebsd.org>; Wed,  7 Sep 2005 01:38:35 +0000 (GMT)
	(envelope-from maurice@sphinx.clari.net.au)
Received: from sphinx.clari.net.au (sphinx.clari.net.au [203.8.14.117])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 8825A43D45
	for <FreeBSD-gnats-submit@freebsd.org>; Wed,  7 Sep 2005 01:38:34 +0000 (GMT)
	(envelope-from maurice@sphinx.clari.net.au)
Received: from sphinx.clari.net.au (localhost.clari.net.au [127.0.0.1])
	by sphinx.clari.net.au (8.13.3/8.13.3) with ESMTP id j871cWcj069730
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 7 Sep 2005 11:38:32 +1000 (EST)
	(envelope-from maurice@sphinx.clari.net.au)
Received: (from root@localhost)
	by sphinx.clari.net.au (8.13.3/8.13.3/Submit) id j871cWA8069729;
	Wed, 7 Sep 2005 11:38:32 +1000 (EST)
	(envelope-from maurice)
Message-Id: <200509070138.j871cWA8069729@sphinx.clari.net.au>
Date: Wed, 7 Sep 2005 11:38:32 +1000 (EST)
From: Maurice Castro <maurice@sphinx.clari.net.au>
Reply-To: Maurice Castro <maurice@sphinx.clari.net.au>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: Script allowing multiuser mode in spite of fsck errors
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         85819
>Category:       conf
>Synopsis:       [patch] script allowing multiuser mode in spite of fsck errors
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-rc
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Sep 07 01:40:13 GMT 2005
>Closed-Date:    
>Last-Modified:  Thu Jun 29 00:27:17 GMT 2006
>Originator:     Maurice Castro
>Release:        FreeBSD 5.4-RELEASE i386
>Organization:
Clarinet Internet Solutions
>Environment:
System: FreeBSD sphinx.clari.net.au 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Mon Aug 15 14:39:49 EST 2005 maurice@sphinx.clari.net.au:/work/src/sys/i386/compile/sphinx i386


	
>Description:
	
>How-To-Repeat:
	
>Fix:


#!/bin/sh
#

# PROVIDE: mountdeflocal
# REQUIRE: root mountcritlocal
# BEFORE: var tmp
# KEYWORD: nojail

. /etc/rc.subr

name="mountdeflocal"
stop_cmd=":"
start_cmd="mountdeflocal_start"

# Author: Maurice Castro
# Date: Mon Jul 25 09:16:28 EST 2005
# This script is used to get a machine into multiuser mode inspite of failed
# fscks. This script is useful for remote machines with only ethernet 
# connectivity
#
# How to use:
#
# To use this script make / and /usr readonly. Make all the other 
# filesystems noauto and no fsck in the the fstab file and add them to the 
# deferred_mount variable in /etc/rc.conf. A trap for young players is that 
# some ilbehaved programs need to write into /usr/local; so separating it
# from /usr is a good idea.
#
# What it does:
# 
# fsck each of the local disks that are to be deferred mounted if any of the 
# fail then don't mount any of them if they all succeed mount the lot

mountdeflocal_start()
{
	# Mount nfs filesystems.
	#
	echo -n 'Fsck local deferred mount file systems:'
	for i in $deferred_mount
	do 
		/sbin/fsck -p $i
		if [ $? != 0 ]
		then 
			exit 0
		fi
	done
	echo '.'

	echo -n 'Mount local deferred mount file systems:'
	for i in $deferred_mount
	do 
		/sbin/mount $i
	done
	echo '.'
}

load_rc_config $name
run_rc_command "$1"

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-bugs->freebsd-rc 
Responsible-Changed-By: linimon 
Responsible-Changed-When: Thu Jun 29 00:26:52 UTC 2006 
Responsible-Changed-Why:  
Over to maintainer(s). 

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