Correction création Array DISKS

This commit is contained in:
John Doe 2021-01-30 16:22:44 +01:00
parent afd9be884b
commit 064111ebd2
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ done
for i in "${OUTPUT[@]}" #Selection des disques ayant SMART a Enabled
do
if /usr/sbin/smartctl -i $i | grep "SMART support is: Enabled" >/dev/null 2>&1; then
DISKS+=$i
DISKS+=($i)
fi
done