From 8d6263f3542c64e355d1fd61201e1de1f0125c7c Mon Sep 17 00:00:00 2001 From: Joey Schulze Date: Sat, 3 May 2014 21:49:55 +0200 Subject: [PATCH] Improve check output --- check_ssl_certificate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 check_ssl_certificate 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); -- 2.20.1