From: Alexander Barton Date: Wed, 1 Sep 2010 16:52:25 +0000 (+0200) Subject: RAID.tst: only check RAID on Linux when /proc/md is readable X-Git-Tag: rel-3~25 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=nagcollect.git;a=commitdiff_plain;h=40f58119d52082bc216795d142823bd63d5deffb RAID.tst: only check RAID on Linux when /proc/md is readable --- diff --git a/client/lib/tests/RAID.tst b/client/lib/tests/RAID.tst index 3ce95d9..8b537e5 100644 --- a/client/lib/tests/RAID.tst +++ b/client/lib/tests/RAID.tst @@ -21,7 +21,7 @@ if [ `uname` = "Darwin" ]; then fi fi rm -f "$tmp" -elif [ `uname` = "Linux" ]; then +elif [ `uname` = "Linux" -a -r /proc/mdstat ]; then status=$(cat /proc/mdstat | grep -E "(^md|^ [0-9])" | while read info1; do read info2 dev=`echo $info1 | cut -d' ' -f1`