diff options
-rw-r--r-- | debian/changelog | 4 | ||||
-rwxr-xr-x | sitesummary-nodes | 14 |
2 files changed, 17 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index d8fd51d..756bb1f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ sitesummary (0.0.61) UNRELEASED; urgency=low - * Do not check debugfs, smb and cifs file systems in Nagios. + * Do not check anon_inodefs, bdev, cgroup, cifs, cpuset, debugfs, + hugetlbfs, inotifyfs, mqueue, nfs4, oprofilefs, pipefs, proc, + ramfs, securityfs, smb and sockfs 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 e8c4d09..a371de9 100755 --- a/sitesummary-nodes +++ b/sitesummary-nodes @@ -438,19 +438,33 @@ sub generate_nagios_config { next if (exists $checked{$device}); # Avoid system file systems and non-local file systems. next if ($fs eq "devpts" || + $fs eq "anon_inodefs" || $fs eq "autofs" || + $fs eq "bdev" || $fs eq "binfmt_misc" || + $fs eq "cgroup" || $fs eq "cifs" || + $fs eq "cpuset" || $fs eq "debugfs" || $fs eq "fuse.ltspfs" || $fs eq "fusectl" || + $fs eq "hugetlbfs" || + $fs eq "inotifyfs" || $fs eq "iso9660" || + $fs eq "mqueue" || $fs eq "nfs" || + $fs eq "nfs4" || $fs eq "nfsd" || + $fs eq "oprofilefs" || + $fs eq "pipefs" || $fs eq "proc" || + $fs eq "proc" || + $fs eq "ramfs" || $fs eq "rootfs" || $fs eq "rpc_pipefs" || + $fs eq "securityfs" || $fs eq "smb" || + $fs eq "sockfs" || $fs eq "sysfs" || $fs eq "tmpfs" || $fs eq "usbfs"); |