From: Paul Sokolovsky Date: Sat, 23 Jun 2007 21:22:30 +0000 (+0000) Subject: initscripts 1.0: mountall.sh: Don't swallow crucial errors. X-Git-Tag: Release-2010-05/1~8868^2~261^2~27^2~22^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83c963e5eae6dd2355061503ff428abe3365a78c;p=openembedded.git initscripts 1.0: mountall.sh: Don't swallow crucial errors. * Instead, log them to syslog. --- diff --git a/packages/initscripts/initscripts-1.0/mountall.sh b/packages/initscripts/initscripts-1.0/mountall.sh index 30f5b5ea37..53bff0fbce 100755 --- a/packages/initscripts/initscripts-1.0/mountall.sh +++ b/packages/initscripts/initscripts-1.0/mountall.sh @@ -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. diff --git a/packages/initscripts/initscripts_1.0.bb b/packages/initscripts/initscripts_1.0.bb index 1203fb4231..39b1eee9c1 100644 --- a/packages/initscripts/initscripts_1.0.bb +++ b/packages/initscripts/initscripts_1.0.bb @@ -4,7 +4,7 @@ PRIORITY = "required" DEPENDS = "makedevs" RDEPENDS = "makedevs" LICENSE = "GPL" -PR = "r95" +PR = "r96" SRC_URI = "file://halt \ file://ramdisk \