Show nvme devices in SMART disk list. Fixes #9042

(cherry picked from commit 89b4d4f30576908e36d5c6b70701db2f5e7363e6)
This commit is contained in:
jim-p 2018-10-15 14:46:26 -04:00
parent f646afcf6e
commit 5ae720be09

View File

@ -2602,7 +2602,7 @@ function get_smart_drive_list() {
foreach ($disk_list as $id => $disk) {
// We only want certain kinds of disks for S.M.A.R.T.
// 1 is a match, 0 is no match, False is any problem processing the regex
if (preg_match("/^(ad|da|ada).*[0-9]{1,2}$/", $disk) !== 1) {
if (preg_match("/^(ad|da|ada|nvme).*[0-9]{1,2}$/", $disk) !== 1) {
unset($disk_list[$id]);
}
}