Commit dbc5b2b9 authored by tbrehm's avatar tbrehm
Browse files

Exclude cramfs shares from disk monitoring.

parent 38708600
......@@ -221,7 +221,7 @@ class monitor_core_module {
$usePercent = floatval($data[$i]['percent']);
//* We dont want to check the cdrom drive as a cd / dvd is always 100% full
if($data[$i]['type'] != 'iso9660') {
if($data[$i]['type'] != 'iso9660' && $data[$i]['type'] != 'cramfs') {
if ($usePercent > 75) $state = $this->_setState($state, 'info');
if ($usePercent > 80) $state = $this->_setState($state, 'warning');
if ($usePercent > 90) $state = $this->_setState($state, 'critical');
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment