Control: tags 806228 + patch Control: tags 806228 + pending Dear maintainer,
I've prepared an NMU for nagios-plugins-rabbitmq (versioned as 1:1.2.0-2.2) and uploaded it to DELAYED/5. Please feel free to tell me if I should delay it longer. Regards, Salvatore
diff -u nagios-plugins-rabbitmq-1.2.0/debian/changelog nagios-plugins-rabbitmq-1.2.0/debian/changelog --- nagios-plugins-rabbitmq-1.2.0/debian/changelog +++ nagios-plugins-rabbitmq-1.2.0/debian/changelog @@ -1,3 +1,11 @@ +nagios-plugins-rabbitmq (1:1.2.0-2.2) unstable; urgency=medium + + * Non-maintainer upload. + * Change Nagios::Plugin with Monitoring::Plugin (Closes: #806228) + * Replace Depends on libnagios-plugin-perl with libmonitoring-plugin-perl + + -- Salvatore Bonaccorso <[email protected]> Thu, 08 Dec 2016 12:41:43 +0100 + nagios-plugins-rabbitmq (1:1.2.0-2.1) unstable; urgency=medium * Non-maintainer upload. diff -u nagios-plugins-rabbitmq-1.2.0/debian/control nagios-plugins-rabbitmq-1.2.0/debian/control --- nagios-plugins-rabbitmq-1.2.0/debian/control +++ nagios-plugins-rabbitmq-1.2.0/debian/control @@ -11,7 +11,7 @@ Depends: ${shlibs:Depends}, ${misc:Depends}, libjson-perl, - libnagios-plugin-perl, + libmonitoring-plugin-perl, liburi-perl, libwww-perl Suggests: rabbitmq-server only in patch2: unchanged: --- nagios-plugins-rabbitmq-1.2.0.orig/Build.PL +++ nagios-plugins-rabbitmq-1.2.0/Build.PL @@ -20,7 +20,7 @@ "Getopt::Long" => 0, }, recommends => { - "Nagios::Plugin" => "0.33", + "Monitoring::Plugin" => "0.37", }, configure_requires => { "Module::Build" => 0, only in patch2: unchanged: --- nagios-plugins-rabbitmq-1.2.0.orig/META.json +++ nagios-plugins-rabbitmq-1.2.0/META.json @@ -4,7 +4,7 @@ "James Casey ([email protected])" ], "dynamic_config" : 1, - "generated_by" : "Module::Build version 0.38, CPAN::Meta::Converter version 2.110930", + "generated_by" : "Module::Build version 0.4003, CPAN::Meta::Converter version 2.133380", "license" : [ "apache_2_0" ], @@ -16,23 +16,23 @@ "prereqs" : { "build" : { "requires" : { - "Module::Build" : 0 + "Module::Build" : "0" } }, "configure" : { "requires" : { - "Module::Build" : 0 + "Module::Build" : "0" } }, "runtime" : { "recommends" : { - "Nagios::Plugin" : "0.27" + "Monitoring::Plugin" : "0.37" }, "requires" : { - "Getopt::Long" : 0, + "Getopt::Long" : "0", "JSON" : "2.12", - "LWP::UserAgent" : 0, - "Pod::Usage" : 0, + "LWP::UserAgent" : "0", + "Pod::Usage" : "0", "URI" : "1.35" } } only in patch2: unchanged: --- nagios-plugins-rabbitmq-1.2.0.orig/META.yml +++ nagios-plugins-rabbitmq-1.2.0/META.yml @@ -6,14 +6,15 @@ Module::Build: 0 configure_requires: Module::Build: 0 -generated_by: 'Module::Build version 0.3603' +dynamic_config: 1 +generated_by: 'Module::Build version 0.4003, CPAN::Meta::Converter version 2.133380' license: apache meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: 1.4 name: nagios-plugins-rabbitmq recommends: - Nagios::Plugin: 0.33 + Monitoring::Plugin: 0.37 requires: Getopt::Long: 0 JSON: 2.12 only in patch2: unchanged: --- nagios-plugins-rabbitmq-1.2.0.orig/scripts/check_rabbitmq_aliveness +++ nagios-plugins-rabbitmq-1.2.0/scripts/check_rabbitmq_aliveness @@ -12,7 +12,7 @@ use strict; use warnings; -use Nagios::Plugin ; +use Monitoring::Plugin ; use LWP::UserAgent; use URI::Escape; use JSON; @@ -31,8 +31,8 @@ # http://nagiosplug.sourceforge.net/developer-guidelines.html#PLUGOPTIONS -# Instantiate Nagios::Plugin object (the 'usage' parameter is mandatory) -my $p = Nagios::Plugin->new( +# Instantiate Monitoring::Plugin object (the 'usage' parameter is mandatory) +my $p = Monitoring::Plugin->new( usage => "Usage: %s [options] -H hostname", license => "", version => $VERSION, @@ -134,7 +134,7 @@ Use the management interface of RabbitMQ to check that the server is alive. It declares a test queue, then publishes and consumes a message. -It uses Nagios::Plugin and accepts all standard Nagios options. +It uses Monitoring::Plugin and accepts all standard Nagios options. =head1 OPTIONS @@ -208,7 +208,7 @@ =head1 SEE ALSO -See Nagios::Plugin(3) +See Monitoring::Plugin(3) The RabbitMQ management plugin is described at http://www.rabbitmq.com/management.html only in patch2: unchanged: --- nagios-plugins-rabbitmq-1.2.0.orig/scripts/check_rabbitmq_connections +++ nagios-plugins-rabbitmq-1.2.0/scripts/check_rabbitmq_connections @@ -7,8 +7,8 @@ use strict; use warnings; -use Nagios::Plugin qw(OK CRITICAL WARNING UNKNOWN); -use Nagios::Plugin::Functions qw(%STATUS_TEXT); +use Monitoring::Plugin qw(OK CRITICAL WARNING UNKNOWN); +use Monitoring::Plugin::Functions qw(%STATUS_TEXT); use LWP::UserAgent; use URI::Escape; use JSON; @@ -20,7 +20,7 @@ use File::Basename; $PROGNAME = basename($0); -my $p = Nagios::Plugin->new( +my $p = Monitoring::Plugin->new( usage => "Usage: %s [options] -H hostname", license => "", version => $VERSION, @@ -201,7 +201,7 @@ Critical and warning thresholds can be set for each of the metric. -It uses Nagios::Plugin and accepts all standard Nagios options. +It uses Monitoring::Plugin and accepts all standard Nagios options. =head1 OPTIONS @@ -297,7 +297,7 @@ =head1 SEE ALSO -See Nagios::Plugin(3) +See Monitoring::Plugin(3) The RabbitMQ management plugin is described at http://www.rabbitmq.com/management.html only in patch2: unchanged: --- nagios-plugins-rabbitmq-1.2.0.orig/scripts/check_rabbitmq_objects +++ nagios-plugins-rabbitmq-1.2.0/scripts/check_rabbitmq_objects @@ -8,7 +8,7 @@ use strict; use warnings; -use Nagios::Plugin ; +use Monitoring::Plugin ; use LWP::UserAgent; use URI::Escape; use JSON; @@ -20,7 +20,7 @@ use File::Basename; $PROGNAME = basename($0); -my $p = Nagios::Plugin->new( +my $p = Monitoring::Plugin->new( usage => "Usage: %s [options] -H hostname", license => "", version => $VERSION, @@ -147,7 +147,7 @@ =back -It uses Nagios::Plugin and accepts all standard Nagios options. +It uses Monitoring::Plugin and accepts all standard Nagios options. =head1 OPTIONS @@ -214,7 +214,7 @@ =head1 SEE ALSO -See Nagios::Plugin(3) +See Monitoring::Plugin(3) The RabbitMQ management plugin is described at http://www.rabbitmq.com/management.html only in patch2: unchanged: --- nagios-plugins-rabbitmq-1.2.0.orig/scripts/check_rabbitmq_overview +++ nagios-plugins-rabbitmq-1.2.0/scripts/check_rabbitmq_overview @@ -7,8 +7,8 @@ use strict; use warnings; -use Nagios::Plugin qw(OK CRITICAL WARNING UNKNOWN); -use Nagios::Plugin::Functions qw(%STATUS_TEXT); +use Monitoring::Plugin qw(OK CRITICAL WARNING UNKNOWN); +use Monitoring::Plugin::Functions qw(%STATUS_TEXT); use LWP::UserAgent; use URI::Escape; use JSON; @@ -20,7 +20,7 @@ use File::Basename; $PROGNAME = basename($0); -my $p = Nagios::Plugin->new( +my $p = Monitoring::Plugin->new( usage => "Usage: %s [options] -H hostname", license => "", version => $VERSION, @@ -176,7 +176,7 @@ Critical and warning thresholds can be set for each of the metrics. -It uses Nagios::Plugin and accepts all standard Nagios options. +It uses Monitoring::Plugin and accepts all standard Nagios options. =head1 OPTIONS @@ -256,7 +256,7 @@ =head1 SEE ALSO -See Nagios::Plugin(3) +See Monitoring::Plugin(3) The RabbitMQ management plugin is described at http://www.rabbitmq.com/management.html only in patch2: unchanged: --- nagios-plugins-rabbitmq-1.2.0.orig/scripts/check_rabbitmq_partition +++ nagios-plugins-rabbitmq-1.2.0/scripts/check_rabbitmq_partition @@ -13,7 +13,7 @@ use strict; use warnings; -use Nagios::Plugin ; +use Monitoring::Plugin ; use LWP::UserAgent; use URI::Escape; use JSON; @@ -32,8 +32,8 @@ # http://nagiosplug.sourceforge.net/developer-guidelines.html#PLUGOPTIONS -# Instantiate Nagios::Plugin object (the 'usage' parameter is mandatory) -my $p = Nagios::Plugin->new( +# Instantiate Monitoring::Plugin object (the 'usage' parameter is mandatory) +my $p = Monitoring::Plugin->new( usage => "Usage: %s [options] -H hostname", license => "", version => $VERSION, @@ -139,7 +139,7 @@ Use the management interface of RabbitMQ to check if a cluster partition has occured. -It uses Nagios::Plugin and accepts all standard Nagios options. +It uses Monitoring::Plugin and accepts all standard Nagios options. =head1 OPTIONS @@ -209,7 +209,7 @@ =head1 SEE ALSO -See Nagios::Plugin(3) +See Monitoring::Plugin(3) The RabbitMQ management plugin is described at http://www.rabbitmq.com/management.html only in patch2: unchanged: --- nagios-plugins-rabbitmq-1.2.0.orig/scripts/check_rabbitmq_queue +++ nagios-plugins-rabbitmq-1.2.0/scripts/check_rabbitmq_queue @@ -7,8 +7,8 @@ use strict; use warnings; -use Nagios::Plugin qw(OK CRITICAL WARNING UNKNOWN); -use Nagios::Plugin::Functions qw(%STATUS_TEXT); +use Monitoring::Plugin qw(OK CRITICAL WARNING UNKNOWN); +use Monitoring::Plugin::Functions qw(%STATUS_TEXT); use LWP::UserAgent; use URI::Escape; use JSON; @@ -20,7 +20,7 @@ use File::Basename; $PROGNAME = basename($0); -my $p = Nagios::Plugin->new( +my $p = Monitoring::Plugin->new( usage => "Usage: %s [options] -H hostname", license => "", version => $VERSION, @@ -192,7 +192,7 @@ Critical and warning thresholds can be set for each of the metrics. -It uses Nagios::Plugin and accepts all standard Nagios options. +It uses Monitoring::Plugin and accepts all standard Nagios options. =head1 OPTIONS @@ -284,7 +284,7 @@ =head1 SEE ALSO -See Nagios::Plugin(3) +See Monitoring::Plugin(3) The RabbitMQ management plugin is described at http://www.rabbitmq.com/management.html only in patch2: unchanged: --- nagios-plugins-rabbitmq-1.2.0.orig/scripts/check_rabbitmq_server +++ nagios-plugins-rabbitmq-1.2.0/scripts/check_rabbitmq_server @@ -9,8 +9,8 @@ use strict; use warnings; -use Nagios::Plugin qw(OK CRITICAL WARNING UNKNOWN); -use Nagios::Plugin::Functions qw(%STATUS_TEXT); +use Monitoring::Plugin qw(OK CRITICAL WARNING UNKNOWN); +use Monitoring::Plugin::Functions qw(%STATUS_TEXT); use LWP::UserAgent; use URI::Escape; use JSON; @@ -31,8 +31,8 @@ # http://nagiosplug.sourceforge.net/developer-guidelines.html#PLUGOPTIONS -# Instantiate Nagios::Plugin object (the 'usage' parameter is mandatory) -my $p = Nagios::Plugin->new( +# Instantiate Monitoring::Plugin object (the 'usage' parameter is mandatory) +my $p = Monitoring::Plugin->new( usage => "Usage: %s [options] -H hostname", license => "", version => $VERSION, @@ -207,7 +207,7 @@ It provides performance data for each of these variables and allows for warning and criticality levels to be specified for each. -It uses Nagios::Plugin and accepts all standard Nagios options. +It uses Monitoring::Plugin and accepts all standard Nagios options. =head1 OPTIONS @@ -298,7 +298,7 @@ =head1 SEE ALSO -See Nagios::Plugin(3) +See Monitoring::Plugin(3) The RabbitMQ management plugin is described at http://www.rabbitmq.com/management.html only in patch2: unchanged: --- nagios-plugins-rabbitmq-1.2.0.orig/scripts/check_rabbitmq_shovels +++ nagios-plugins-rabbitmq-1.2.0/scripts/check_rabbitmq_shovels @@ -3,7 +3,7 @@ use warnings; use JSON -support_by_pp; use LWP::UserAgent; -use Nagios::Plugin; +use Monitoring::Plugin; $::PROGRAM = "check_rabbitmq_shovels"; @@ -22,7 +22,7 @@ # run() # --- sub run { - my $np = Nagios::Plugin->new( + my $np = Monitoring::Plugin->new( plugin => $::PROGRAM, version => $::VERSION, blurb => "check that all the shovels of the given RabbitMQ host " @@ -234,7 +234,7 @@ =head1 SEE ALSO -See L<Nagios::Plugin> +See L<Monitoring::Plugin> The RabbitMQ management plugin is described at L<http://www.rabbitmq.com/management.html> only in patch2: unchanged: --- nagios-plugins-rabbitmq-1.2.0.orig/scripts/check_rabbitmq_watermark +++ nagios-plugins-rabbitmq-1.2.0/scripts/check_rabbitmq_watermark @@ -12,7 +12,7 @@ use strict; use warnings; -use Nagios::Plugin ; +use Monitoring::Plugin ; use LWP::UserAgent; use URI::Escape; use JSON; @@ -31,8 +31,8 @@ # http://nagiosplug.sourceforge.net/developer-guidelines.html#PLUGOPTIONS -# Instantiate Nagios::Plugin object (the 'usage' parameter is mandatory) -my $p = Nagios::Plugin->new( +# Instantiate Monitoring::Plugin object (the 'usage' parameter is mandatory) +my $p = Monitoring::Plugin->new( usage => "Usage: %s [options] -H hostname", license => "", version => $VERSION, @@ -150,7 +150,7 @@ Use the management interface of RabbitMQ to check if the mem_alarm or disk_free_alarm has been triggered. -It uses Nagios::Plugin and accepts all standard Nagios options. +It uses Monitoring::Plugin and accepts all standard Nagios options. =head1 OPTIONS @@ -228,7 +228,7 @@ =head1 SEE ALSO -See Nagios::Plugin(3) +See Monitoring::Plugin(3) The RabbitMQ management plugin is described at http://www.rabbitmq.com/management.html

