diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2008-06-08 12:21:02 +0000 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2008-06-08 12:21:02 +0000 |
commit | fe66a3c40d852c0ad397f0fc54208ca50007e264 (patch) | |
tree | 8fd8e513a1584ab93343560c77490ad77b03ea2f | |
parent | e72ae6d0665b4095f9aaaecfd5f15591729d3d59 (diff) | |
download | sitesummary-fe66a3c40d852c0ad397f0fc54208ca50007e264.tar.gz sitesummary-fe66a3c40d852c0ad397f0fc54208ca50007e264.tar.bz2 sitesummary-fe66a3c40d852c0ad397f0fc54208ca50007e264.tar.xz |
* Accept nagios3 clients as nagios clients.
-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 c1a3293..cd1a110 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +sitesummary (0.0.41) UNRELEASED; urgency=low + + * Accept nagios3 clients as nagios clients. + + -- Petter Reinholdtsen <pere@debian.org> Sun, 8 Jun 2008 14:20:40 +0200 + sitesummary (0.0.40) unstable; urgency=low * Updated sitesummary-nodes: diff --git a/sitesummary-nodes b/sitesummary-nodes index a62077e..1cc8741 100755 --- a/sitesummary-nodes +++ b/sitesummary-nodes @@ -61,7 +61,8 @@ 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, "nagios2"); + is_pkg_installed($hostid, "nagios2") || + is_pkg_installed($hostid, "nagios3"); } sub print_munin_list { |