From 1ea8908e38e9d85adc162fb2a24cd2a88cbcac87 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Fri, 12 Oct 2012 09:44:20 +0000 Subject: [PATCH] deployment: support all revisions of the PERC RAID controller On Dell PowerEdge R310 servers we have the PERC H700, on the next generation model R320 we have PERC H710. Don't be too picky about the whitelist and just check for "PERC" in the model information and "DELL" as vendor. From: Michael Prokop --- deployment.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deployment.sh b/deployment.sh index 070f2c9..c133b4c 100755 --- a/deployment.sh +++ b/deployment.sh @@ -676,7 +676,8 @@ check_for_supported_disk() { return 0 fi - if grep -q 'PERC H700' /sys/block/${DISK}/device/model && \ + # PERC H700, PERC H710,... + if grep -q 'PERC' /sys/block/${DISK}/device/model && \ grep -q "DELL" /sys/block/${DISK}/device/vendor ; then return 0 fi