Random Project

Line 110 error

The plugin did not process the status for me correctly as it was always selecting the SCSI/MEGARAID line_str to match on due to a comparison error. Line 110 is as follows in the download:

if ($interface eq ‘megaraid’.”,”.$number or ‘scsi’){

Replace this line by the following 2 lines below:

if (!defined($number)) { $number = 0; }
if ($interface eq ‘megaraid’.”,”.$number or $interface eq ‘scsi’){

Aside from this the plugin works brilliant!