diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | sitesummary-nodes | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index c9e5329..0ac28fb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +sitesummary (0.0.35) UNRELEASED; urgency=low + + * Recognice nagios2 as a nagios client/server indicator. + + -- Petter Reinholdtsen <pere@debian.org> Mon, 3 Dec 2007 10:28:51 +0100 + sitesummary (0.0.34) unstable; urgency=low * Prefer REMOTE_ADDR over the output from gethostbyaddr() in diff --git a/sitesummary-nodes b/sitesummary-nodes index 9329cd4..2d235c7 100755 --- a/sitesummary-nodes +++ b/sitesummary-nodes @@ -60,7 +60,8 @@ sub is_munin_client { sub is_nagios_client { my $hostid = shift; return is_pkg_installed($hostid, "nagios-nrpe-server") || - is_pkg_installed($hostid, "nagios-text"); + is_pkg_installed($hostid, "nagios-text") || + is_pkg_installed($hostid, "nagios2"); } sub print_munin_list { |