mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-05-28 04:35:40 -04:00
Rebase to master (#1731)
This commit is contained in:
parent
85c8dcddfa
commit
c255656a4c
1 changed files with 9 additions and 7 deletions
|
|
@ -567,12 +567,14 @@ exit $state;
|
||||||
|
|
||||||
sub process_arguments(){
|
sub process_arguments(){
|
||||||
GetOptions
|
GetOptions
|
||||||
("V" => \$opt_V, "version" => \$opt_V,
|
("V" => \$opt_V, "version" => \$opt_V,
|
||||||
"v" => \$opt_v, "verbose" => \$opt_v,
|
"v" => \$opt_v, "verbose" => \$opt_v,
|
||||||
"h" => \$opt_h, "help" => \$opt_h,
|
"h" => \$opt_h, "help" => \$opt_h,
|
||||||
"M:s" => \$opt_M, "mailserver:s" => \$opt_M, # mailserver (default sendmail)
|
"M:s" => \$opt_M, "mailserver:s" => \$opt_M, # mailserver (default sendmail)
|
||||||
"w=i" => \$opt_w, "warning=i" => \$opt_w, # warning if above this number
|
"w=i" => \$opt_w, "warning=i" => \$opt_w, # warning if above this number
|
||||||
"c=i" => \$opt_c, "critical=i" => \$opt_c, # critical if above this number
|
"c=i" => \$opt_c, "critical=i" => \$opt_c, # critical if above this number
|
||||||
|
"W=i" => \$opt_W, "warning-domain=i" => \$opt_W, # Warning if above this number
|
||||||
|
"C=i" => \$opt_C, "critical-domain=i" => \$opt_C, # Critical if above this number
|
||||||
"t=i" => \$opt_t, "timeout=i" => \$opt_t,
|
"t=i" => \$opt_t, "timeout=i" => \$opt_t,
|
||||||
"s" => \$opt_s, "sudo" => \$opt_s,
|
"s" => \$opt_s, "sudo" => \$opt_s,
|
||||||
"d:s" => \$opt_d, "configdir:s" => \$opt_d,
|
"d:s" => \$opt_d, "configdir:s" => \$opt_d,
|
||||||
|
|
@ -671,15 +673,15 @@ sub print_help () {
|
||||||
print " Feedback/patches to support non-sendmail mailqueue welcome\n\n";
|
print " Feedback/patches to support non-sendmail mailqueue welcome\n\n";
|
||||||
print "-w (--warning) = Min. number of messages in queue to generate warning\n";
|
print "-w (--warning) = Min. number of messages in queue to generate warning\n";
|
||||||
print "-c (--critical) = Min. number of messages in queue to generate critical alert ( w < c )\n";
|
print "-c (--critical) = Min. number of messages in queue to generate critical alert ( w < c )\n";
|
||||||
print "-W = Min. number of messages for same domain in queue to generate warning\n";
|
print "-W (--warning-domain) = Min. number of messages for same domain in queue to generate warning\n";
|
||||||
print "-C = Min. number of messages for same domain in queue to generate critical alert ( W < C )\n";
|
print "-C (--critical-domain) = Min. number of messages for same domain in queue to generate critical alert ( W < C )\n";
|
||||||
print "-t (--timeout) = Plugin timeout in seconds (default = $utils::TIMEOUT)\n";
|
print "-t (--timeout) = Plugin timeout in seconds (default = $utils::TIMEOUT)\n";
|
||||||
print "-M (--mailserver) = [ sendmail | qmail | postfix | exim | nullmailer ] (default = autodetect)\n";
|
print "-M (--mailserver) = [ sendmail | qmail | postfix | exim | nullmailer ] (default = autodetect)\n";
|
||||||
print "-s (--sudo) = Use sudo to call the mailq command\n";
|
print "-s (--sudo) = Use sudo to call the mailq command\n";
|
||||||
print "-d (--configdir) = Config file or directory\n";
|
print "-d (--configdir) = Config file or directory\n";
|
||||||
print "-h (--help)\n";
|
print "-h (--help)\n";
|
||||||
print "-V (--version)\n";
|
print "-V (--version)\n";
|
||||||
print "-v (--verbose) = debugging output\n";
|
print "-v (--verbose) = debugging output\n";
|
||||||
print "\n\n";
|
print "\n\n";
|
||||||
print "Note: -w and -c are required arguments. -W and -C are optional.\n";
|
print "Note: -w and -c are required arguments. -W and -C are optional.\n";
|
||||||
print " -W and -C are applied to domains listed on the queues - both FROM and TO. (sendmail)\n";
|
print " -W and -C are applied to domains listed on the queues - both FROM and TO. (sendmail)\n";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue