Merge pull request #1815 from mdandidarmawan/master

Fixing Typo error on Lets Encrypt validation
This commit is contained in:
Anton Reutov 2019-02-25 17:21:15 +03:00 committed by GitHub
commit ba6491b23f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -190,7 +190,7 @@ for auth in $authz; do
nonce=$(echo "$answer" |grep Nonce |cut -f2 -d \ |tr -d '\r\n')
status=$(echo "$answer"|grep HTTP/1.1 |tail -n1 |cut -f 2 -d ' ')
if [[ "$status" -ne 200 ]]; then
check_result $E_CONNECT "Let's Encrypt vvalidation status $status"
check_result $E_CONNECT "Let's Encrypt validation status $status"
fi
i=$((i + 1))