diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2008-06-07 13:32:36 +0000 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2008-06-07 13:32:36 +0000 |
commit | ccfdd9a434235fc093c850bdca272b7be3994f5c (patch) | |
tree | c10d01efe9cf25e38c35df83caf38ccf8eb2ec08 | |
parent | cc5cde6e52c60c57c98bb68adca0f751c1b299d9 (diff) | |
download | sitesummary-ccfdd9a434235fc093c850bdca272b7be3994f5c.tar.gz sitesummary-ccfdd9a434235fc093c850bdca272b7be3994f5c.tar.bz2 sitesummary-ccfdd9a434235fc093c850bdca272b7be3994f5c.tar.xz |
* Updated sitesummary-nodes:
- Ignore nfs file systems when generating nagis configuration.
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | sitesummary-nodes | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index efb2629..f2d0b90 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +sitesummary (0.0.40) UNRELEASED; urgency=low + + * Updated sitesummary-nodes: + - Ignore nfs file systems when generating nagis configuration. + + -- Petter Reinholdtsen <pere@debian.org> Sat, 7 Jun 2008 15:31:35 +0200 + sitesummary (0.0.39) unstable; urgency=low * Rename munin plugin file name to get it working with munin. diff --git a/sitesummary-nodes b/sitesummary-nodes index 1a08470..a62077e 100755 --- a/sitesummary-nodes +++ b/sitesummary-nodes @@ -115,6 +115,7 @@ EOF $fs eq "autofs" || $fs eq "binfmt_misc" || $fs eq "iso9660" || + $fs eq "nfs" || $fs eq "nfsd" || $fs eq "proc" || $fs eq "rootfs" || |