Browse Source

Update dns_freemyip.sh

pull/3490/head
Recolic 2 years ago
committed by GitHub
parent
commit
e6a8c06568
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      dnsapi/dns_freemyip.sh

8
dnsapi/dns_freemyip.sh

@ -2,12 +2,14 @@
# #
# Author: Recolic Keghart <root@recolic.net> # Author: Recolic Keghart <root@recolic.net>
# #
######## Public functions #####################
# acme.sh user: please set your token here!
[ -z "$FREEMYIP_Token" ] && FREEMYIP_Token="05ddb54360621d37dea67259" [ -z "$FREEMYIP_Token" ] && FREEMYIP_Token="05ddb54360621d37dea67259"
freemyip_prevdomain_tmpfile=/tmp/.acme-sh-freemyip-prevdomain
# Note: this script was executed in subshell. It means all env would be cleanup, and EXIT event would be called between different domain names.
################ Do not modify after this line ##############
# Note: this script was executed in subshell. It means all env would be cleanup, and EXIT event would be called between different domain names. The only way to persist state is a temporary file.
freemyip_prevdomain_tmpfile=/tmp/.acme-sh-freemyip-prevdomain
# There is random failure while calling freemyip API too fast. This function automatically retry until success. # There is random failure while calling freemyip API too fast. This function automatically retry until success.
freemyip_get_until_ok() { freemyip_get_until_ok() {

Loading…
Cancel
Save