diff options
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | sitesummary-nodes | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 3ee37bc..d8fd51d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ sitesummary (0.0.61) UNRELEASED; urgency=low - * Do not check debugfs in Nagios. + * Do not check debugfs, smb and cifs file systems in Nagios. * Improve hardware list by avoiding bogus vendor and model settings. * Check cups using the check_cups_queue Nagios module from http://exchange.nagios.org/directory/Plugins/Printing/check_cups_queue/details diff --git a/sitesummary-nodes b/sitesummary-nodes index 7fd0d25..89c9157 100755 --- a/sitesummary-nodes +++ b/sitesummary-nodes @@ -439,6 +439,7 @@ sub generate_nagios_config { next if ($fs eq "devpts" || $fs eq "autofs" || $fs eq "binfmt_misc" || + $fs eq "cifs" || $fs eq "debugfs" || $fs eq "fuse.ltspfs" || $fs eq "fusectl" || @@ -448,6 +449,7 @@ sub generate_nagios_config { $fs eq "proc" || $fs eq "rootfs" || $fs eq "rpc_pipefs" || + $fs eq "smb" || $fs eq "sysfs" || $fs eq "tmpfs" || $fs eq "usbfs"); |