From ac3f3ae5c6ef501418f1dc8f8eee51c6bb67afeb Mon Sep 17 00:00:00 2001 From: Kirill Solomko Date: Wed, 19 Dec 2012 12:15:47 +0000 Subject: [PATCH] added hard-drive vendor "LSI" into the supported list --- deployment.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/deployment.sh b/deployment.sh index 3a85180..bfea0e4 100755 --- a/deployment.sh +++ b/deployment.sh @@ -685,6 +685,12 @@ check_for_supported_disk() { return 0 fi + # IBM System HS23 LSISAS2004 + if grep -q 'Logical Volume' /sys/block/${DISK}/device/model && \ + grep -q "LSI" /sys/block/${DISK}/device/vendor ; then + return 0 + fi + # PERC H700, PERC H710,... if grep -q 'PERC' /sys/block/${DISK}/device/model && \ grep -q "DELL" /sys/block/${DISK}/device/vendor ; then