We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3870860 commit dbc5b2bCopy full SHA for dbc5b2b
server/mods-available/monitor_core_module.inc.php
@@ -221,7 +221,7 @@ function monitorDiskUsage() {
221
$usePercent = floatval($data[$i]['percent']);
222
223
//* We dont want to check the cdrom drive as a cd / dvd is always 100% full
224
- if($data[$i]['type'] != 'iso9660') {
+ if($data[$i]['type'] != 'iso9660' && $data[$i]['type'] != 'cramfs') {
225
if ($usePercent > 75) $state = $this->_setState($state, 'info');
226
if ($usePercent > 80) $state = $this->_setState($state, 'warning');
227
if ($usePercent > 90) $state = $this->_setState($state, 'critical');
0 commit comments