fix detection and loop issue

This commit is contained in:
Nils 2021-05-15 20:18:28 +02:00
parent fb8815d107
commit 03c6051ba3
Signed by: byreqz
GPG Key ID: 396A62D7D436749E
1 changed files with 1 additions and 8 deletions

View File

@ -106,13 +106,8 @@ while [ -z "$1" ]; do
echo "------------------- /dev/sd"$x" --------------------"
echo -e "drive is not responding"
echo "-------------------------------------------------"
else
exit
fi
done
if [[ -z $(ls /dev | grep nvme) ]];then
exit
fi
fi
if [[ -n $(ls /dev | grep nvme) ]];then
echo "=== nvme drive check: ($(ls -l /sys/block | grep nvme | wc -l) found) ==="
@ -150,14 +145,12 @@ while [ -z "$1" ]; do
echo "-------------------------------------------------"
fi
done
if [[ -z $(ls /dev | grep sd) ]];then
exit
fi
fi
if [[ -n $(ls /sys/block | grep nvme) ]] || [[ -n $(ls /sys/block | grep sd) ]] || [[ ! "$raidcheck" =~ "3ware" ]] && [[ "$raidcheck" =~ "adaptec" ]] && [[ "$raidcheck" =~ "lsi" ]] && [[ -n $(ls /sys/block | grep sd) ]] && [[ -n $(ls /dev | grep nvme) ]];then
echo "no drives detected"
exit
fi
exit
elif [[ -n $(echo "$raidcheck" | grep -e "3ware") ]];then
echo "3ware raid-controller detected"
dreiware=$(tw_cli show | grep c | cut -c -3)