From 2ce22968427ce3cadf5214bda659098032f86efd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20H=C3=A4hnel?= Date: Mon, 20 Apr 2015 09:26:59 +0200 Subject: Update sslutils.c optimize output if certificate expires in less then 24h thx to axel.schmalowsky@sixt.com for this patch diff --git a/plugins/sslutils.c b/plugins/sslutils.c index d0ae474..69d12f2 100644 --- a/plugins/sslutils.c +++ b/plugins/sslutils.c @@ -221,6 +221,13 @@ int np_net_ssl_check_cert(int days_till_exp_warn, int days_till_exp_crit){ return STATE_WARNING; else return STATE_CRITICAL; + } else if (days_left == 0 && time_left > 0) { + int hours_left = (int) time_left/3600; + printf (_("%s - Certificate '%s' expires in %u %s (%s)\n"), (days_left>days_till_exp_crit) ? "WARNING" : "CRITICAL", cn, hours_left, hours_left > 0 ? "hours" : "minutes", timestamp); + if ( days_left > days_till_exp_crit) + return STATE_WARNING; + else + return STATE_CRITICAL; } else if (time_left < 0) { printf(_("CRITICAL - Certificate '%s' expired on %s.\n"), cn, timestamp); status=STATE_CRITICAL; -- cgit v0.10-9-g596f