This commit is contained in:
fling
2010-09-30 09:50:12 +08:00
parent ef4a024ab3
commit a90555da07

View File

@@ -19,11 +19,11 @@
# This file is a wrapper to mkraid.sh.
while read line
do
$(dirname $0)/mkraid.sh "$line"
ret=$?
if [ $ret -ne 0 ];then
exit $ret
$(dirname $0)/mkraid.sh "$line"
ret=$?
if [ $ret -ne 0 ];then
exit $ret
else
echo "@ make raid is success"
fi
fi
done