You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on a Windows Server 2019 an existing Logicat Device is not detected.
In line 293 of check_adaptec_raid we search for "^Logical device number ([0-9]+)$"
arcconf (Version 3.03.00 (23668) ) outputs:
----------------------------------------------------------------------
Logical device information
----------------------------------------------------------------------
Logical Device number 0
...
Caused by case sensitive pattern matching no "Logical device number" is found
May be a better attempt would be to search case insensitive: if($line =~ /^Logical device number ([0-9]+)$/**i**){
Best regards,
Edgar
The text was updated successfully, but these errors were encountered:
Hi,
on a Windows Server 2019 an existing Logicat Device is not detected.
In line 293 of check_adaptec_raid we search for "^Logical device number ([0-9]+)$"
arcconf (Version 3.03.00 (23668) ) outputs:
Caused by case sensitive pattern matching no "Logical device number" is found
May be a better attempt would be to search case insensitive:
if($line =~ /^Logical device number ([0-9]+)$/**i**){
Best regards,
Edgar
The text was updated successfully, but these errors were encountered: