initscripts 1.0: mountall.sh: Don't swallow crucial errors.
authorPaul Sokolovsky <pmiscml@gmail.com>
Sat, 23 Jun 2007 21:22:30 +0000 (21:22 +0000)
committerPaul Sokolovsky <pmiscml@gmail.com>
Sat, 23 Jun 2007 21:22:30 +0000 (21:22 +0000)
* Instead, log them to syslog.

packages/initscripts/initscripts-1.0/mountall.sh
packages/initscripts/initscripts_1.0.bb

index 30f5b5e..53bff0f 100755 (executable)
@@ -14,7 +14,7 @@ fi
 # about this. So we mount "proc" filesystems without -v.
 #
 test "$VERBOSE" != no && echo "Mounting local filesystems..."
-mount -a $MOUNTALL 2>/dev/null
+mount -a $MOUNTALL 2>&1 | logger -s -p user.err
 
 #
 # We might have mounted something over /dev, see if /dev/initctl is there.
index 1203fb4..39b1eee 100644 (file)
@@ -4,7 +4,7 @@ PRIORITY = "required"
 DEPENDS = "makedevs"
 RDEPENDS = "makedevs"
 LICENSE = "GPL"
-PR = "r95"
+PR = "r96"
 
 SRC_URI = "file://halt \
            file://ramdisk \