]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
Remove further logging code from initscripts.
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 21 Aug 2009 22:00:10 +0000 (00:00 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 21 Aug 2009 22:00:10 +0000 (00:00 +0200)
src/initscripts/core/mountfs.conf

index b94130ec15ae600ac74071a3135382c01bdc4f4c..c432c5c09b1c74f963082079d9da6a29df5887f3 100644 (file)
@@ -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