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