mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
Code formatting (shellcheck/shfmt)
This commit is contained in:
parent
04ca808e80
commit
2f97c789dd
@ -137,9 +137,9 @@ _get_root() {
|
|||||||
|
|
||||||
# Find/isolate the root zone to work with in createRecord() and deleteRecord()
|
# Find/isolate the root zone to work with in createRecord() and deleteRecord()
|
||||||
rootZone=""
|
rootZone=""
|
||||||
if [ "$checkMultiZones" == "true" ]; then
|
if [ "$checkMultiZones" = "true" ]; then
|
||||||
rootZone=$(for zone in $(echo "$result" | tr -d '\n' ' '); do
|
rootZone=$(for zone in $(echo "$result" | tr -d '\n' ' '); do
|
||||||
if [[ "$zone" =~ "$domain" ]]; then
|
if [ "$(echo "$domain" | grep "$zone")" != "" ]; then
|
||||||
_debug2 _get_root "- trying to figure out if $zone is in $domain"
|
_debug2 _get_root "- trying to figure out if $zone is in $domain"
|
||||||
echo "$zone"
|
echo "$zone"
|
||||||
break
|
break
|
||||||
@ -178,7 +178,7 @@ createRecord() {
|
|||||||
|
|
||||||
# Get root domain information - needed for DNS Services API communication
|
# Get root domain information - needed for DNS Services API communication
|
||||||
if [ -z "$rootZoneName" ] || [ -z "$rootZoneDomainID" ] || [ -z "$rootZoneServiceID" ]; then
|
if [ -z "$rootZoneName" ] || [ -z "$rootZoneDomainID" ] || [ -z "$rootZoneServiceID" ]; then
|
||||||
_get_root $fulldomain
|
_get_root "$fulldomain"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
_debug2 createRecord "CNAME TXT value is: $txtvalue"
|
_debug2 createRecord "CNAME TXT value is: $txtvalue"
|
||||||
@ -190,7 +190,7 @@ createRecord() {
|
|||||||
result=$(_post "$data" "$DNSServices_API/service/$rootZoneServiceID/dns/$rootZoneDomainID/records" "" "POST")
|
result=$(_post "$data" "$DNSServices_API/service/$rootZoneServiceID/dns/$rootZoneDomainID/records" "" "POST")
|
||||||
_debug2 createRecord "result from API: $result"
|
_debug2 createRecord "result from API: $result"
|
||||||
|
|
||||||
if [ "$(echo "$result" | grep '"success":true')" == "" ]; then
|
if [ "$(echo "$result" | grep '"success":true')" = "" ]; then
|
||||||
_err "Failed to create TXT record $fulldomain with content $txtvalue in zone $rootZoneName"
|
_err "Failed to create TXT record $fulldomain with content $txtvalue in zone $rootZoneName"
|
||||||
_err "$result"
|
_err "$result"
|
||||||
return 1
|
return 1
|
||||||
@ -204,7 +204,7 @@ deleteRecord() {
|
|||||||
fulldomain=$1
|
fulldomain=$1
|
||||||
txtvalue=$2
|
txtvalue=$2
|
||||||
|
|
||||||
if [[ ! "$fulldomain" =~ "_acme-challenge" ]]; then
|
if [ "$(echo "$fulldomain" | grep "_acme-challenge")" = "" ]; then
|
||||||
_err "The script tried to delete the record $fulldomain which is not the above created ACME challenge"
|
_err "The script tried to delete the record $fulldomain which is not the above created ACME challenge"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
@ -212,13 +212,13 @@ deleteRecord() {
|
|||||||
_debug2 deleteRecord "Deleting $fulldomain TXT $txtvalue record"
|
_debug2 deleteRecord "Deleting $fulldomain TXT $txtvalue record"
|
||||||
|
|
||||||
if [ -z "$rootZoneName" ] || [ -z "$rootZoneDomainID" ] || [ -z "$rootZoneServiceID" ]; then
|
if [ -z "$rootZoneName" ] || [ -z "$rootZoneDomainID" ] || [ -z "$rootZoneServiceID" ]; then
|
||||||
_get_root $fulldomain
|
_get_root "$fulldomain"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
result="$(_H1="$_H1" _H2="$_H2" _get "$DNSServices_API/service/$rootZoneServiceID/dns/$rootZoneDomainID")"
|
result="$(_H1="$_H1" _H2="$_H2" _get "$DNSServices_API/service/$rootZoneServiceID/dns/$rootZoneDomainID")"
|
||||||
recordInfo="$(echo "$result" | tr '}' '\n' | grep "\"name\":\"${fulldomain}" | grep "\"content\":\"" | grep "${txtvalue}")"
|
recordInfo="$(echo "$result" | tr '}' '\n' | grep "\"name\":\"${fulldomain}" | grep "\"content\":\"" | grep "${txtvalue}")"
|
||||||
_debug2 deleteRecord "recordInfo=$recordInfo"
|
_debug2 deleteRecord "recordInfo=$recordInfo"
|
||||||
recordID="$(echo "$recordInfo" | tr ',' '\n' | egrep "\"id\":\"[0-9]+\"" | cut -d'"' -f4)"
|
recordID="$(echo "$recordInfo" | tr ',' '\n' | grep -E "\"id\":\"[0-9]+\"" | cut -d'"' -f4)"
|
||||||
|
|
||||||
if [ -z "$recordID" ]; then
|
if [ -z "$recordID" ]; then
|
||||||
_info "Record $fulldomain TXT $txtvalue not found or already deleted"
|
_info "Record $fulldomain TXT $txtvalue not found or already deleted"
|
||||||
|
Loading…
Reference in New Issue
Block a user