We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3853314 commit 65e88e5Copy full SHA for 65e88e5
ci/certbot/test.sh
@@ -36,6 +36,7 @@ if [ "${success}" = "0" ]; then
36
fi
37
38
## SMTP also has the same cert
39
+echo "EHLO localhost" | nc localhost 25
40
echo | openssl s_client -showcerts -servername zulip.example.net -connect localhost:25 -starttls smtp \
41
| openssl x509 -text -noout \
42
| tee cert.pem
@@ -47,6 +48,7 @@ fi
47
48
## Test renewing -- this should generate and deploy a new certificate
49
serial=$(grep "Serial Number:" cert.pem)
50
"${docker[@]:?}" exec zulip /usr/bin/certbot renew --force-renew --non-interactive --debug
51
+"${docker[@]:?}" exec zulip cat /var/log/letsencrypt/letsencrypt.log
52
getcert | tee cert.pem
53
newserial=$(grep "Serial Number:" cert.pem)
54
if [ "${newserial}" = "${serial}" ]; then
0 commit comments