diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2012-10-24 20:30:55 +0000 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2012-10-24 20:30:55 +0000 |
commit | e01d9b8e0ee8d2b7baa79a0529a149b3a0138bb2 (patch) | |
tree | 09d5446dc277fa8c264d633ee945d46a29e3f1bb | |
parent | 7f60ca792051a1c549dc1ed8c8e77ecda932ab37 (diff) | |
download | sitesummary-e01d9b8e0ee8d2b7baa79a0529a149b3a0138bb2.tar.gz sitesummary-e01d9b8e0ee8d2b7baa79a0529a149b3a0138bb2.tar.bz2 sitesummary-e01d9b8e0ee8d2b7baa79a0529a149b3a0138bb2.tar.xz |
Do not check xenfs file systems when generating Nagios config.
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | sitesummary-nodes | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index c31dddd..1858aa8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ sitesummary (0.1.6) UNRELEASED; urgency=low [ Petter Reinholdtsen ] * Make Nagios config more robust, ignore hosts without any name and address, which must be the result of a corrupt sitesummary entry. + * Do not check xenfs file systems when generating Nagios config. [ David Prévot ] * Add Italian debconf translation, thanks to Beatrice Torracca diff --git a/sitesummary-nodes b/sitesummary-nodes index fb27d57..2ff836c 100755 --- a/sitesummary-nodes +++ b/sitesummary-nodes @@ -523,6 +523,7 @@ sub generate_nagios_config { $fs eq "sysfs" || $fs eq "tmpfs" || $fs eq "devtmpfs" || + $fs eq "xenfs" || $fs eq "usbfs"); $checked{$device} = 1; |