From: Michael Tremer Date: Fri, 21 Aug 2009 22:00:10 +0000 (+0200) Subject: Remove further logging code from initscripts. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04775b6346c5a178a86e1c3c9daef5719fb93bdb;p=ipfire-3.x.git Remove further logging code from initscripts. --- diff --git a/src/initscripts/core/mountfs.conf b/src/initscripts/core/mountfs.conf index b94130ec1..c432c5c09 100644 --- a/src/initscripts/core/mountfs.conf +++ b/src/initscripts/core/mountfs.conf @@ -6,27 +6,17 @@ start on stopped checkfs console output script - set -e - . /etc/init/functions - - message="Remounting root file system in read-write mode..." mount -n -o remount,rw / >/dev/null - evaluate_retval standard # Remove fsck-related file system watermarks. rm -f /fastboot /forcefsck - message="Recording existing mounts in /etc/mtab..." > /etc/mtab - mount -f / || failed=1 - mount -f /proc || failed=1 - mount -f /sys || failed=1 - (exit ${failed}) - evaluate_retval standard + mount -f / + mount -f /proc + mount -f /sys # This will mount all filesystems that do not have _netdev in # their option list. _netdev denotes a network filesystem. - message="Mounting remaining file systems..." mount -a -O no_netdev >/dev/null - evaluate_retval standard end script