From: Joey Schulze Date: Sat, 3 May 2014 19:49:55 +0000 (+0200) Subject: Improve check output X-Git-Url: https://git.infodrom.org/?p=infodrom%2Ficinga-plugins;a=commitdiff_plain;h=8d6263f3542c64e355d1fd61201e1de1f0125c7c Improve check output --- diff --git a/check_ssl_certificate b/check_ssl_certificate old mode 100644 new mode 100755 index 641dff7..bc96d45 --- a/check_ssl_certificate +++ b/check_ssl_certificate @@ -130,7 +130,7 @@ close(OPENSSL); $date =~ s/ +/ /g; my ($month, $day, $hour, $min, $sec, $year, $tz) = split(/[\s+|:]/, $date); -print "m=$month, d=$day, h=$hour, m=$min, s=$sec, y=$year, z=$tz\n"; +printf "Expiry date: %d %s %d, %d:%02d:%02d %s\n", $day, $month, $year, $hour, $min, $sec, $tz; my $daysLeft = int((timegm($sec, $min, $hour, $day, $months{$month}, $year - 1900) - time()) / 86400);