mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-04-15 22:00:06 -04:00
UNKNOWN exit status was returning status of "-1", changed to "3"
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1290 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
parent
a15ea2615f
commit
a079822858
1 changed files with 2 additions and 2 deletions
|
|
@ -41,10 +41,10 @@ use Getopt::Long;
|
|||
# ----------------------------------------
|
||||
|
||||
my $TIMEOUT = 120;
|
||||
my %ERRORS = ('UNKNOWN' , '-1',
|
||||
'OK' , '0',
|
||||
my %ERRORS = ('OK' , '0',
|
||||
'WARNING', '1',
|
||||
'CRITICAL', '2');
|
||||
'UNKNOWN' , '3');
|
||||
|
||||
my $state = "UNKNOWN";
|
||||
my ($sender,$receiver, $pophost, $popuser, $poppasswd, $smtphost,$keeporphaned);
|
||||
|
|
|
|||
Loading…
Reference in a new issue