--- nagios-plugins-rabbitmq-1.2.0.orig/debian/changelog +++ nagios-plugins-rabbitmq-1.2.0/debian/changelog @@ -0,0 +1,50 @@ +nagios-plugins-rabbitmq (1:1.2.0-2.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix "should depend on libjson-perl": + add libjson-perl to Depends. + (Closes: #758723) + * Also add libwww-perl and liburi-perl to Depends, which are also required. + * Fix "FTBFS with perl 5.22 (Module::Build)": + add libmodule-build-perl to Build-Depends. + (Closes: #789637) + + -- gregor herrmann Sat, 25 Jul 2015 20:50:27 +0200 + +nagios-plugins-rabbitmq (1:1.2.0-2) unstable; urgency=medium + + * debian/postrm: reload nagios-nrpe-server only if needed (closes: + #749232). + + -- Cyril Bouthors Wed, 16 Jul 2014 15:48:54 +0200 + +nagios-plugins-rabbitmq (1:1.2.0-1) unstable; urgency=medium + + * New upstream release. + + -- Cyril Bouthors Tue, 08 Jul 2014 11:30:58 +0200 + +nagios-plugins-rabbitmq (1.1.0-4) unstable; urgency=medium + + * debian/postinst: reload nagios-nrpe-server if needed (closes: + #749232). + + -- Cyril Bouthors Tue, 24 Jun 2014 16:14:10 +0200 + +nagios-plugins-rabbitmq (1.1.0-3) unstable; urgency=medium + + * Fixed debian/copyright. + + -- Cyril Bouthors Thu, 17 Apr 2014 11:17:04 +0200 + +nagios-plugins-rabbitmq (1.1.0-2) unstable; urgency=medium + + * Fixed queue checking + + -- Cyril Bouthors Wed, 16 Apr 2014 15:22:22 +0200 + +nagios-plugins-rabbitmq (1.1.0-1) unstable; urgency=low + + * Initial release (closes: #744861). + + -- Cyril Bouthors Tue, 15 Apr 2014 17:13:13 +0200 --- nagios-plugins-rabbitmq-1.2.0.orig/debian/compat +++ nagios-plugins-rabbitmq-1.2.0/debian/compat @@ -0,0 +1 @@ +5 --- nagios-plugins-rabbitmq-1.2.0.orig/debian/control +++ nagios-plugins-rabbitmq-1.2.0/debian/control @@ -0,0 +1,23 @@ +Source: nagios-plugins-rabbitmq +Section: net +Priority: optional +Maintainer: Cyril Bouthors +Uploaders: Cyril Bouthors , Cyril Bouthors +Build-Depends: debhelper (>= 5), rsync, libmodule-build-perl +Standards-Version: 3.9.5 + +Package: nagios-plugins-rabbitmq +Architecture: all +Depends: ${shlibs:Depends}, + ${misc:Depends}, + libjson-perl, + libnagios-plugin-perl, + liburi-perl, + libwww-perl +Suggests: rabbitmq-server +Description: Set of Nagios checks useful for monitoring a RabbitMQ server + They use the RabbitMQ management interface with is over HTTP and therefore have + a very light profile on the nagios server. + . + See the [documentation](http://www.rabbitmq.com/management.html) on the + RabbitMQ management interface for more details on what it provides. --- nagios-plugins-rabbitmq-1.2.0.orig/debian/copyright +++ nagios-plugins-rabbitmq-1.2.0/debian/copyright @@ -0,0 +1,20 @@ +This package was debianized by Cyril Bouthors on +Tue Apr 15 17:16:07 CEST 2014 + +It was downloaded from + +Upstream Author: + + James Casey + +Copyright: + + + +License: + +The original tarball is licensed under the Apache License Version 2.0, January +2004, see `/usr/share/common-licenses/Apache-2.0`. + +The Debian packaging is (C) 2014, Cyril Bouthors and is +licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- nagios-plugins-rabbitmq-1.2.0.orig/debian/postinst +++ nagios-plugins-rabbitmq-1.2.0/debian/postinst @@ -0,0 +1,36 @@ +#!/bin/sh +# +# Copyright (C) 2009-2014 Cyril Bouthors +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with +# this program. If not, see . +# + +set -e + +# Reload NRPE if needed +if [ -f /etc/init.d/nagios-nrpe-server ] +then + if which invoke-rc.d >/dev/null 2>&1 + then + invoke-rc.d nagios-nrpe-server reload + else + /etc/init.d/nagios-nrpe-server reload + fi +fi + +if [ "$1" != "configure" ] +then + exit 0 +fi + +#DEBHELPER# --- nagios-plugins-rabbitmq-1.2.0.orig/debian/postrm +++ nagios-plugins-rabbitmq-1.2.0/debian/postrm @@ -0,0 +1,31 @@ +#!/bin/sh +# +# Copyright (C) 2009-2014 Cyril Bouthors +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with +# this program. If not, see . +# + +set -e + +# Reload NRPE if needed +if [ -f /etc/init.d/nagios-nrpe-server ] +then + if which invoke-rc.d >/dev/null 2>&1 + then + invoke-rc.d nagios-nrpe-server reload + else + /etc/init.d/nagios-nrpe-server reload + fi +fi + +#DEBHELPER# --- nagios-plugins-rabbitmq-1.2.0.orig/debian/rules +++ nagios-plugins-rabbitmq-1.2.0/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ --- nagios-plugins-rabbitmq-1.2.0.orig/debian/source/format +++ nagios-plugins-rabbitmq-1.2.0/debian/source/format @@ -0,0 +1 @@ +1.0