summaryrefslogtreecommitdiffstats
path: root/lib
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 /lib
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
Diffstat (limited to 'lib')
-rw-r--r--lib/Nagios/Plugin.pm3
-rw-r--r--lib/Nagios/Plugin/Functions.pm3
2 files changed, 4 insertions, 2 deletions
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