diff options
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | sitesummary-nodes | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index aa0b1e7..98a7d8b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ sitesummary (0.0.74) UNRELEASED; urgency=low * Add munin include dir to default munin config to match recent munin versions. + * Ignore devtmpfs in Nagios configuration, the same way tmpfs is + ignored. -- Petter Reinholdtsen <pere@debian.org> Thu, 22 Dec 2011 18:52:10 +0100 diff --git a/sitesummary-nodes b/sitesummary-nodes index 970bdfe..fd6be45 100755 --- a/sitesummary-nodes +++ b/sitesummary-nodes @@ -469,6 +469,7 @@ sub generate_nagios_config { $fs eq "sockfs" || $fs eq "sysfs" || $fs eq "tmpfs" || + $fs eq "devtmpfs" || $fs eq "usbfs"); $checked{$device} = 1; |