summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2006-08-31 08:34:24 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2006-08-31 08:34:24 (GMT)
commitf2aa8f510828ddfb165f84ecc13aaf29d7bdfb4d (patch)
treeb5445def675470d2eae0d61ed159b3b59b3dae11 /lib
parent2b422c372ee109303984ca8bac6f5ea3d5976dc0 (diff)
downloadmonitoring-plugin-perl-f2aa8f510828ddfb165f84ecc13aaf29d7bdfb4d.tar.gz
Support multiple -v options for verbosity level
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/Nagios-Plugin/trunk@1472 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'lib')
-rw-r--r--lib/Nagios/Plugin/Getopt.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Nagios/Plugin/Getopt.pm b/lib/Nagios/Plugin/Getopt.pm
index d291b2f..1903e8c 100644
--- a/lib/Nagios/Plugin/Getopt.pm
+++ b/lib/Nagios/Plugin/Getopt.pm
@@ -41,8 +41,8 @@ my @ARGS = ({
41 help => "-t, --timeout=INTEGER\n Seconds before plugin times out (default: %s)", 41 help => "-t, --timeout=INTEGER\n Seconds before plugin times out (default: %s)",
42 default => $DEFAULT{timeout}, 42 default => $DEFAULT{timeout},
43 }, { 43 }, {
44 spec => 'verbose|v', 44 spec => 'verbose|v+',
45 help => "-v, --verbose\n Show details for command-line debugging", 45 help => "-v, --verbose\n Show details for command-line debugging (can repeat up to 3 times)",
46 default => $DEFAULT{verbose}, 46 default => $DEFAULT{verbose},
47 }, 47 },
48); 48);
@@ -467,7 +467,7 @@ example:
467 -t, --timeout=INTEGER 467 -t, --timeout=INTEGER
468 Seconds before plugin times out (default: 15) 468 Seconds before plugin times out (default: 15)
469 -v, --verbose 469 -v, --verbose
470 Show details for command-line debugging 470 Show details for command-line debugging (can repeat up to 3 times)
471 471
472 472
473=head2 ARGUMENTS 473=head2 ARGUMENTS
@@ -506,7 +506,7 @@ and so on. The following are some examples:
506 506
507=item exclude|X=s@ 507=item exclude|X=s@
508 508
509=item verbose|v 509=item verbose|v+
510 510
511=back 511=back
512 512