#!/bin/sh

test -x /usr/bin/arrayprobe || exit 0
OUTPUT=`/usr/bin/arrayprobe`
STATUS=$?
if [ $STATUS -ne 0 ]
then
   echo $OUTPUT
fi
exit $STATUS
