-if Time.now < certificate.not_before
- puts "Certificate #{domains.first} on #{host} not valid until #{certificate.not_before}"
-elsif certificate.not_after - Time.now < 21 * 86400
- puts "Certificate #{domains.first} on #{host} expires at #{certificate.not_after}"
-else
- subject_alt_name = certificate.extensions.find { |e| e.oid == "subjectAltName" }
+ if Time.now < certificate.not_before
+ puts "Certificate #{domains.first} on #{host} not valid until #{certificate.not_before}"
+ elsif certificate.not_after - Time.now < 21 * 86400
+ puts "Certificate #{domains.first} on #{host} expires at #{certificate.not_after}"
+ end
+
+ subject_alt_name = certificate.extensions.find { |ext| ext.oid == "subjectAltName" }