diff options
-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; |