Update smartoverall plugin for unsupported logging

This commit is contained in:
Jeremy Gardais 2020-02-26 11:46:17 +01:00
parent 51e51733a7
commit 0eaf0e8f6f
1 changed files with 3 additions and 0 deletions

View File

@ -160,6 +160,9 @@ https://www.smartmontools.org/wiki/FAQ#SmartmontoolsDatabase"
if smartctl -d "${TYPE}" -l selftest "${DISK}" | grep -qi -- "No self-tests"; then if smartctl -d "${TYPE}" -l selftest "${DISK}" | grep -qi -- "No self-tests"; then
DSELFTEST_MSG="&red No self-tests recorded:" DSELFTEST_MSG="&red No self-tests recorded:"
DCODE="8" DCODE="8"
## If the device doesn't support test logging
elif smartctl -d "${TYPE}" -l selftest "${DISK}" | grep -qEi -- "does not support.*logging"; then
DSELFTEST_MSG="&clear Test logging are not supported:"
else else
DSELFTEST_MSG="" DSELFTEST_MSG=""
fi fi