From 9d0db7defadefa3d324e264ab5bad68044ac78e6 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Mon, 11 Jan 2010 10:32:22 +0100 Subject: [PATCH 1/1] More specific test for I/O errors on Mac OS X --- client/lib/tests/Disks.tst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/lib/tests/Disks.tst b/client/lib/tests/Disks.tst index d081608..9c7b045 100644 --- a/client/lib/tests/Disks.tst +++ b/client/lib/tests/Disks.tst @@ -8,11 +8,11 @@ if [ `uname` = "Darwin" ]; then if [ -n "$offset" ]; then # reboot detected in system.log error=`LC_ALL=C tail -c "+$offset" /var/log/system.log \ - | grep "I/O" | grep -v nagcollect | tail -n 1` + | grep -i "I/O" | grep -i error | grep -v nagcollect | tail -n 1` else # no reboot detected in system.log - error=`LC_ALL=C grep "I/O" /var/log/system.log \ - | grep -v nagcollect | tail -n 1` + error=`LC_ALL=C grep -i "I/O" /var/log/system.log \ + | grep -i error | grep -v nagcollect | tail -n 1` fi if [ -n "$error" ]; then msg=`echo $error | cut -d' ' -f6-` -- 2.39.2