diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-10-18 11:51:20 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-10-18 11:51:20 +0000 |
commit | 2d5e416592ff2fab507bd4ebfacab3a66a3b8e46 (patch) | |
tree | 57d2cb68dbe0b751cfd79b6c68e09ac8d7db6344 /lib | |
parent | 6fa65670320afe60c04d0b7dd8834598971ec9c1 (diff) | |
download | monitoring-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.pm | 3 | ||||
-rw-r--r-- | lib/Nagios/Plugin/Functions.pm | 3 |
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); | |||
23 | our @EXPORT = (@STATUS_CODES); | 23 | our @EXPORT = (@STATUS_CODES); |
24 | our @EXPORT_OK = qw(%ERRORS); | 24 | our @EXPORT_OK = qw(%ERRORS); |
25 | 25 | ||
26 | our $VERSION = $Nagios::Plugin::Functions::VERSION; | 26 | # Remember to update Nagios::Plugin::Functions as well! |
27 | our $VERSION = "0.14"; | ||
27 | 28 | ||
28 | sub add_perfdata { | 29 | sub 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; | |||
10 | use File::Basename; | 10 | use File::Basename; |
11 | use Params::Validate qw(validate :types); | 11 | use Params::Validate qw(validate :types); |
12 | 12 | ||
13 | our $VERSION = "0.13"; | 13 | # Remember to update Nagios::Plugins as well |
14 | our $VERSION = "0.14"; | ||
14 | 15 | ||
15 | our @STATUS_CODES = qw(OK WARNING CRITICAL UNKNOWN DEPENDENT); | 16 | our @STATUS_CODES = qw(OK WARNING CRITICAL UNKNOWN DEPENDENT); |
16 | 17 | ||