mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-22 05:01:40 +00:00
fixed shfmt
This commit is contained in:
parent
fc336e3733
commit
c94f9f21af
@ -18,7 +18,7 @@ dns_selfhost_add() {
|
|||||||
SELFHOSTDNS_PASSWORD="${SELFHOSTDNS_PASSWORD:-$(_readaccountconf_mutable SELFHOSTDNS_PASSWORD)}"
|
SELFHOSTDNS_PASSWORD="${SELFHOSTDNS_PASSWORD:-$(_readaccountconf_mutable SELFHOSTDNS_PASSWORD)}"
|
||||||
# These values are domain dependent, so read them from there
|
# These values are domain dependent, so read them from there
|
||||||
SELFHOSTDNS_MAP="${SELFHOSTDNS_MAP:-$(_readdomainconf SELFHOSTDNS_MAP)}"
|
SELFHOSTDNS_MAP="${SELFHOSTDNS_MAP:-$(_readdomainconf SELFHOSTDNS_MAP)}"
|
||||||
# Selfhost api can't dynamically add TXT record,
|
# Selfhost api can't dynamically add TXT record,
|
||||||
# so we have to store the last used RID of the domain to support a second RID for wildcard domains
|
# so we have to store the last used RID of the domain to support a second RID for wildcard domains
|
||||||
# (format: ';fulldomainA:lastRid;;fulldomainB:lastRid;...')
|
# (format: ';fulldomainA:lastRid;;fulldomainB:lastRid;...')
|
||||||
SELFHOSTDNS_MAP_LAST_USED_INTERNAL=$(_readdomainconf SELFHOSTDNS_MAP_LAST_USED_INTERNAL)
|
SELFHOSTDNS_MAP_LAST_USED_INTERNAL=$(_readdomainconf SELFHOSTDNS_MAP_LAST_USED_INTERNAL)
|
||||||
@ -56,12 +56,11 @@ dns_selfhost_add() {
|
|||||||
if ! test -z "$lastUsedRidForDomainEntry"; then
|
if ! test -z "$lastUsedRidForDomainEntry"; then
|
||||||
# replace last used rid entry for domain
|
# replace last used rid entry for domain
|
||||||
SELFHOSTDNS_MAP_LAST_USED_INTERNAL=$(echo "$SELFHOSTDNS_MAP_LAST_USED_INTERNAL" | sed -n -E "s/$lastUsedRidForDomainEntry/;$fulldomain:$rid;/p")
|
SELFHOSTDNS_MAP_LAST_USED_INTERNAL=$(echo "$SELFHOSTDNS_MAP_LAST_USED_INTERNAL" | sed -n -E "s/$lastUsedRidForDomainEntry/;$fulldomain:$rid;/p")
|
||||||
else
|
else
|
||||||
# add last used rid entry for domain
|
# add last used rid entry for domain
|
||||||
SELFHOSTDNS_MAP_LAST_USED_INTERNAL="$SELFHOSTDNS_MAP_LAST_USED_INTERNAL"";$fulldomain:$rid;"
|
SELFHOSTDNS_MAP_LAST_USED_INTERNAL="$SELFHOSTDNS_MAP_LAST_USED_INTERNAL"";$fulldomain:$rid;"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
_info "Trying to add $txt on selfhost for rid: $rid"
|
_info "Trying to add $txt on selfhost for rid: $rid"
|
||||||
|
|
||||||
data="?username=$SELFHOSTDNS_USERNAME&password=$SELFHOSTDNS_PASSWORD&rid=$rid&content=$txt"
|
data="?username=$SELFHOSTDNS_USERNAME&password=$SELFHOSTDNS_PASSWORD&rid=$rid&content=$txt"
|
||||||
|
Loading…
Reference in New Issue
Block a user