summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2006-10-18 11:51:20 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2006-10-18 11:51:20 (GMT)
commit2d5e416592ff2fab507bd4ebfacab3a66a3b8e46 (patch)
tree57d2cb68dbe0b751cfd79b6c68e09ac8d7db6344
parent6fa65670320afe60c04d0b7dd8834598971ec9c1 (diff)
downloadmonitoring-plugin-perl-2d5e416592ff2fab507bd4ebfacab3a66a3b8e46.tar.gz
0.14 uploaded to CPAN. Version numbers changed and updated Changes file
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/Nagios-Plugin/trunk@1495 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r--Changes7
-rw-r--r--META.yml8
-rw-r--r--lib/Nagios/Plugin.pm3
-rw-r--r--lib/Nagios/Plugin/Functions.pm3
4 files changed, 15 insertions, 6 deletions
diff --git a/Changes b/Changes
index e377a45..7afd956 100644
--- a/Changes
+++ b/Changes
@@ -1,8 +1,11 @@
1Revision history for Perl module Nagios::Plugin. 1Revision history for Perl module Nagios::Plugin.
2 2
30.13 ??? 30.14 18th October 2006
4 - Fixed version number due to CPAN upload
5
60.13 18th October 2006
4 - Lots of extra tests and fixes from Nathan Vonnahme 7 - Lots of extra tests and fixes from Nathan Vonnahme
5 - Nagios::Plugin::Getopt added by Gavin Carr 8 - Nagios::Plugin::Getopt, Functions and ExitResult added by Gavin Carr
6 9
70.12 15th June 2006 100.12 15th June 2006
8 - rrdlabel method available to get a performance label, 11 - rrdlabel method available to get a performance label,
diff --git a/META.yml b/META.yml
index bd2b6e2..223f6bb 100644
--- a/META.yml
+++ b/META.yml
@@ -1,11 +1,15 @@
1# http://module-build.sourceforge.net/META-spec.html 1# http://module-build.sourceforge.net/META-spec.html
2#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# 2#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
3name: Nagios-Plugin 3name: Nagios-Plugin
4version: 0.13 4version: 0.14
5version_from: lib/Nagios/Plugin/Base.pm 5version_from: lib/Nagios/Plugin/Functions.pm
6installdirs: site 6installdirs: site
7requires: 7requires:
8 Carp: 0
9 Class::Accessor: 0.22
10 Class::Struct: 0
8 Params::Validate: 0.24 11 Params::Validate: 0.24
12 Test::More: 0.62
9 13
10distribution_type: module 14distribution_type: module
11generated_by: ExtUtils::MakeMaker version 6.17 15generated_by: ExtUtils::MakeMaker version 6.17
diff --git a/lib/Nagios/Plugin.pm b/lib/Nagios/Plugin.pm
index 29b79b9..71d12ed 100644
--- a/lib/Nagios/Plugin.pm
+++ b/lib/Nagios/Plugin.pm
@@ -23,7 +23,8 @@ our @ISA = qw(Exporter Nagios::__::Plugin);
23our @EXPORT = (@STATUS_CODES); 23our @EXPORT = (@STATUS_CODES);
24our @EXPORT_OK = qw(%ERRORS); 24our @EXPORT_OK = qw(%ERRORS);
25 25
26our $VERSION = $Nagios::Plugin::Functions::VERSION; 26# Remember to update Nagios::Plugin::Functions as well!
27our $VERSION = "0.14";
27 28
28sub add_perfdata { 29sub add_perfdata {
29 my ($self, %args) = @_; 30 my ($self, %args) = @_;
diff --git a/lib/Nagios/Plugin/Functions.pm b/lib/Nagios/Plugin/Functions.pm
index 4e099c2..5772c97 100644
--- a/lib/Nagios/Plugin/Functions.pm
+++ b/lib/Nagios/Plugin/Functions.pm
@@ -10,7 +10,8 @@ use warnings;
10use File::Basename; 10use File::Basename;
11use Params::Validate qw(validate :types); 11use Params::Validate qw(validate :types);
12 12
13our $VERSION = "0.13"; 13# Remember to update Nagios::Plugins as well
14our $VERSION = "0.14";
14 15
15our @STATUS_CODES = qw(OK WARNING CRITICAL UNKNOWN DEPENDENT); 16our @STATUS_CODES = qw(OK WARNING CRITICAL UNKNOWN DEPENDENT);
16 17