Compare commits

...

2 Commits

Author SHA1 Message Date
actions 4da3b2cf33 updated hash after commit 2021-10-21 13:58:31 +00:00
nils d743d483f9 up nvme drive loop to 24 instead of 4 2021-10-21 15:57:50 +02:00
2 changed files with 2 additions and 2 deletions

2
hash
View File

@ -1 +1 @@
9f93b7c1e76358c39a773bcf552642b2
1032b0335e08ca002e284fd787c63f01

View File

@ -109,7 +109,7 @@ while [ -z "$1" ]; do
fi
if [[ -n $(ls /dev | grep nvme) ]];then
echo "=== nvme drive check: ($(ls -l /sys/block | grep nvme | wc -l) found) ==="
for x in {0..4};do
for x in {0..24};do
scan=$(smartctl --scan)
if [[ -n $(echo $scan | grep /dev/nvme$x) ]] && [[ -n $(ls /sys/block | grep nvme"$x") ]];then
argsl=$(smartctl -a /dev/nvme$x | grep -e "Reallocated_Sector_Ct" -e "Power_On_Hours" -e "Temperature_Celsius" -e "Media_Wearout_Indicator" -e "Power_Cycle_Count" -e "Reported_Uncorrect" -e "Temperature:" -e "Percentage Used:" -e "Data Units Read:" -e "Data Units Written:" -e "Power on Hours:" -e "Power Cycles:" -e "Media and Data Integrity Errors:" -e "Error Information Log Entries:" -e "Percent_Lifetime_Remain" -e "Write_Error_Rate" -e "Offline_Uncorrectable" -e "Reported_Uncorrect" -e "Error_Correction_Count" -e "Unexpect_Power_Loss_Ct" -e "Raw_Read_Error_Rate" -e "Warning Comp. Temperature Time" -e "Critical Comp. Temperature Time" -e "Power On Hours" -e "Controller Busy Time" -e "Temperature Sensor 1" -e "Temperature Sensor 2" -e "Wear_Leveling_Count" -e "Available Spare:" -e "Critical Warning:" -e "Available Spare Threshold:" -o --color=never)