diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2008-06-07 20:54:30 +0000 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2008-06-07 20:54:30 +0000 |
commit | 2fb75db4c1e1f3bee7d115fda8f7185084a0958c (patch) | |
tree | 9a438940f1e25a10f787e8d78d156bea6a497883 | |
parent | ccfdd9a434235fc093c850bdca272b7be3994f5c (diff) | |
download | sitesummary-2fb75db4c1e1f3bee7d115fda8f7185084a0958c.tar.gz sitesummary-2fb75db4c1e1f3bee7d115fda8f7185084a0958c.tar.bz2 sitesummary-2fb75db4c1e1f3bee7d115fda8f7185084a0958c.tar.xz |
* Fix typo in munin plugin.
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | munin-plugin | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index f2d0b90..30054a3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ sitesummary (0.0.40) UNRELEASED; urgency=low * Updated sitesummary-nodes: - Ignore nfs file systems when generating nagis configuration. + * Fix typo in munin plugin. -- Petter Reinholdtsen <pere@debian.org> Sat, 7 Jun 2008 15:31:35 +0200 diff --git a/munin-plugin b/munin-plugin index 6f74e72..f0c111b 100755 --- a/munin-plugin +++ b/munin-plugin @@ -13,7 +13,7 @@ use SiteSummary; my %sitelabels; -if (!defined $ARGV[0]) { +if (!$ARGV[0]) { for_all_hosts(\&handle_host); # List values in the opposit order of the configuration order, to # try to get the same order on the graphs and the values. |