mirror of
https://github.com/byReqz/stocheck.git
synced 2024-11-22 14:41:15 +00:00
further tweak controller detection
This commit is contained in:
parent
c71fd842e7
commit
e16424dcf5
@ -44,7 +44,7 @@ while [ -z "$1" ]; do
|
|||||||
echo "no drives detected"
|
echo "no drives detected"
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
elif [[ "$raidcheck" =~ "3ware" ]];then
|
elif [[ -n $(echo "$raidcheck" | grep -e "3Ware") ]];then
|
||||||
echo "3ware raid-controller detected"
|
echo "3ware raid-controller detected"
|
||||||
dreiware=$(tw_cli show | grep c | cut -c -3)
|
dreiware=$(tw_cli show | grep c | cut -c -3)
|
||||||
echo "------------------- 3ware controller: $dreiware --------------------"
|
echo "------------------- 3ware controller: $dreiware --------------------"
|
||||||
@ -97,7 +97,7 @@ while [ -z "$1" ]; do
|
|||||||
echo "reading smart values for this controller series is not supported"
|
echo "reading smart values for this controller series is not supported"
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
elif [[ "$raidcheck" =~ "adaptec" ]];then
|
elif [[ -n $(echo "$raidcheck" | grep -e "Adaptec") ]];then
|
||||||
echo "adaptec raid-controller detected"
|
echo "adaptec raid-controller detected"
|
||||||
echo "------------------- adaptec controller --------------------"
|
echo "------------------- adaptec controller --------------------"
|
||||||
arcconf GETCONFIG 1 LD
|
arcconf GETCONFIG 1 LD
|
||||||
@ -115,7 +115,7 @@ while [ -z "$1" ]; do
|
|||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
elif [[ "$raidcheck" =~ "lsi" ]];then
|
elif [[ -n $(echo "$raidcheck" | grep -e "LSI") ]];then
|
||||||
echo "lsi raid-controller detected"
|
echo "lsi raid-controller detected"
|
||||||
echo "------------------- adaptec controller --------------------"
|
echo "------------------- adaptec controller --------------------"
|
||||||
megacli -LDInfo -Lall -Aall
|
megacli -LDInfo -Lall -Aall
|
||||||
|
Loading…
Reference in New Issue
Block a user