]> git.proxmox.com Git - mirror_acme.sh.git/commitdiff
improve output
authorAn | Anton Röhm <18481195+AnTheMaker@users.noreply.github.com>
Thu, 23 Feb 2023 23:01:39 +0000 (00:01 +0100)
committerGitHub <noreply@github.com>
Thu, 23 Feb 2023 23:01:39 +0000 (00:01 +0100)
dnsapi/dns_nanelo.sh

index a3cea3b19fb81ae20bc53e4535cbc8232ff437e6..2a22ecdb58d193f38eb9afb2d7507765c133868e 100644 (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
 }