fixed raid size and modified layout

This commit is contained in:
Nils 2021-07-10 19:57:30 +02:00
parent d72c598a38
commit b13cd01a69
Signed by: byreqz
GPG Key ID: 396A62D7D436749E
1 changed files with 7 additions and 4 deletions

View File

@ -31,7 +31,7 @@ while [ -z "$1" ]; do
echo -e "--------------------------------------------------"
for ((x=1;x<=raidlist2;x++)); do
raid=$(echo "$raidlist" | sed -n "$x"p)
if [[ -z $(echo "$lsbl" | grep -e "%") ]];then
if [[ -z $(echo "$lsbl" | grep -e "$raid" | grep -e "%") ]];then
raidts="unmounted"
fi
if [[ "$raidts" == "unmounted" ]];then
@ -39,9 +39,11 @@ while [ -z "$1" ]; do
raiduuid=$(echo "$lsbl" | grep "$raid" | tr -s ' ' | cut -d " " -f 4)
raidstate=$(echo "$mdadmconf" | grep -e "$raid" | cut -d " " -f 4)
raiddrives=$(echo "$mdadmconf" | grep -e "$raid" | cut -c 6- | grep -o -E "sd[a-z][0-9]|nvme[0-9]n[0-9]p[0-9]" | tr "\n" " ")
echo -e "\033[1mArray:\033[0m "$raid" \033[1mType:\033[0m "$raidstate""
raidts="$(sfdisk -l | grep -e "$raid:" | cut -d " " -f 3) GiB"
echo -e "\033[1mArray:\033[0m "$raid" \033[1mType:\033[0m "$raidstate" \033[1mSize:\033[0m "$raidts""
echo -e "\033[1mMembers:\033[0m "$raiddrives""
echo -e "\033[1mState:\033[0m "$raidts" \033[1mP-UUID\033[0m "$raiduuid""
echo -e "\033[1mState:\033[0m "unmounted" \033[1mFilesystem:\033[0m "$raidfs""
echo -e "\033[1mP-UUID\033[0m "$raiduuid""
echo -e ""
else
raidfs=$(echo "$lsbl" | grep "$raid" | tr -s ' ' | cut -d " " -f 3)
@ -50,7 +52,8 @@ while [ -z "$1" ]; do
raiduuid=$(echo "$lsbl" | grep "$raid" | tr -s ' ' | cut -d " " -f 4)
raidstate=$(echo "$mdadmconf" | grep -e "$raid" | cut -d " " -f 4)
raiddrives=$(echo "$mdadmconf" | grep -e "$raid" | cut -c 6- | grep -o -E "sd[a-z][0-9]|nvme[0-9]n[0-9]p[0-9]" | tr "\n" " ")
echo -e "\033[1mArray:\033[0m "$raid" \033[1mType:\033[0m "$raidstate" \033[1mSize:\033[0m "$raidts" \033[1m%:\033[0m "$raidper""
raidts="$(sfdisk -l | grep -e "$raid:" | cut -d " " -f 3) GiB"
echo -e "\033[1mArray:\033[0m "$raid" \033[1mType:\033[0m "$raidstate" \033[1mSize:\033[0m "$raidts"/"$raidper""
echo -e "\033[1mMembers:\033[0m "$raiddrives""
echo -e "\033[1mState:\033[0m "mounted" \033[1mFilesystem:\033[0m "$raidfs" \033[1mMountpoint:\033[0m "$raidmp""
echo -e "\033[1mP-UUID\033[0m "$raiduuid""