2
0
mirror of https://github.com/acmesh-official/acme.sh synced 2025-08-31 06:15:14 +00:00

improve output

This commit is contained in:
An | Anton Röhm
2023-02-24 00:01:39 +01:00
committed by GitHub
parent c0639c6608
commit d3fefd223d

View File

@@ -9,7 +9,7 @@ NANELO_API="https://api.nanelo.com/v1/"
######## Public functions #####################
#Usage: add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
# Usage: add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
dns_nanelo_add() {
fulldomain=$1
txtvalue=$2
@@ -29,7 +29,7 @@ dns_nanelo_add() {
if _contains "${response}" 'success'; then
return 0
fi
_err "Could not create resource record, check logs"
_err "Could not create resource record, please check the logs"
_err "${response}"
return 1
}
@@ -53,7 +53,7 @@ dns_nanelo_rm() {
if _contains "${response}" 'success'; then
return 0
fi
_err "Could not delete resource record, check logs"
_err "Could not delete resource record, please check the logs"
_err "${response}"
return 1
}