aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetter Reinholdtsen <pere@hungry.com>2010-02-20 16:20:12 +0000
committerPetter Reinholdtsen <pere@hungry.com>2010-02-20 16:20:12 +0000
commitc300098417434695dd906d546c66a1a97f47e6b4 (patch)
treedee5e6c30dbdeebc6c2516a8a6496ff577aea8cb
parent259e7b3969d9df9855663adc46ce6199e739bcdf (diff)
downloadsitesummary-c300098417434695dd906d546c66a1a97f47e6b4.tar.gz
sitesummary-c300098417434695dd906d546c66a1a97f47e6b4.tar.bz2
sitesummary-c300098417434695dd906d546c66a1a97f47e6b4.tar.xz
Do not check debugfs, smb and cifs file systems in Nagios.
-rw-r--r--debian/changelog2
-rwxr-xr-xsitesummary-nodes2
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");