Skip to content

Commit bfea605

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "trivial: fix typos in let's encrypt status logs"
2 parents 76d78b5 + fc70184 commit bfea605

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker/haproxy/haproxy-ssh/update-haproxy-cert.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function haproxy_transaction_start {
3434
cert_input_sha1=$(openssl x509 -noout -fingerprint -sha1 -inform pem -in ${cert_input} | awk -F '=' '{print $2}' | sed -e 's/://g')
3535
cert_dest_sha1=$(echo "show ssl cert *${cert_dest}" | socat unix-connect:/var/lib/kolla/haproxy/haproxy.sock - | awk -F 'SHA1 FingerPrint: ' '{print $2}' | sed '/^$/d')
3636
if [ "${cert_input_sha1}" = "${cert_dest_sha1}" ]; then
37-
log_info "[${cert_dest} - update] Transaction ${cert_input} -> ${cert_dest} successfull."
37+
log_info "[${cert_dest} - update] Transaction ${cert_input} -> ${cert_dest} successful."
3838
else
3939
log_error "[${cert_dest} - update] Transaction ${cert_input} -> ${cert_dest} failed, SHA1 fingerprint of ${cert_input} is not the same as uploaded one."
4040
exit 1

docker/letsencrypt/letsencrypt-lego/sync-and-update-certificate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ if [ "${INTERNAL_SET}" = "true" ] || [ "${EXTERNAL_SET}" = "true" ]; then
7070
log_info "[${FQDN} - hook] Rsync lego data /etc/letsencrypt/lego/ to server ${server} and port ${port}"
7171
rsync -a -e "ssh -p ${port} -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o IdentityFile=/var/lib/letsencrypt/.ssh/id_rsa" /etc/letsencrypt/lego/ haproxy@${server}:/etc/letsencrypt/lego/ --delete >/dev/null 2>&1
7272
if [ "$?" -eq 0 ]; then
73-
log_info "[${FQDN} - hook] Rsync Successfull."
73+
log_info "[${FQDN} - hook] Rsync Successful."
7474
fi
7575

7676
else

0 commit comments

Comments
 (0)