diff options
author | Oliver Skibbe <oliskibbe@gmail.com> | 2016-11-19 15:37:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-19 15:37:27 (GMT) |
commit | 099bd86f1c949b0db05c5c24b2538c8e3370d290 (patch) | |
tree | 2febb2d88ae5e7e1459f4c4282b3e2998fa59d2e /plugins-scripts | |
parent | 6026ff5c1899b7b2516f9fb21b8ffb4b73168722 (diff) | |
parent | 223c59466140d9837233efe79545792e859cb9fa (diff) | |
download | monitoring-plugins-099bd86f1c949b0db05c5c24b2538c8e3370d290.tar.gz |
Merge pull request #1376 from riskersen/check_mssql
check_mssql.pl: switched alarm timeout
Diffstat (limited to 'plugins-scripts')
-rwxr-xr-x | plugins-scripts/check_mssql.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins-scripts/check_mssql.pl b/plugins-scripts/check_mssql.pl index fb3952d..bf3a651 100755 --- a/plugins-scripts/check_mssql.pl +++ b/plugins-scripts/check_mssql.pl | |||
@@ -54,7 +54,7 @@ $SIG{'ALRM'} = sub { | |||
54 | print ("SQL UNKNOWN: ERROR connection $server (alarm timeout)\n"); | 54 | print ("SQL UNKNOWN: ERROR connection $server (alarm timeout)\n"); |
55 | exit $ERRORS{"UNKNOWN"}; | 55 | exit $ERRORS{"UNKNOWN"}; |
56 | }; | 56 | }; |
57 | alarm($TIMEOUT); | 57 | alarm($timeout); |
58 | 58 | ||
59 | unless ($dbh = DBI->connect("dbi:Sybase:server=".uc($server), "$username", "$password")) { | 59 | unless ($dbh = DBI->connect("dbi:Sybase:server=".uc($server), "$username", "$password")) { |
60 | printf "SQL CRITICAL: Can't connect to mssql server $DBI::errstr\n"; | 60 | printf "SQL CRITICAL: Can't connect to mssql server $DBI::errstr\n"; |