Browse Source

Merge pull request #5 from Marco4223/Fix-issues-and-reslolve-zone-and-record-name

Update dns_kas.sh
pull/1341/head
Phlegx Systems OG 5 years ago
committed by GitHub
parent
commit
96180e7555
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      dnsapi/dns_kas.sh

5
dnsapi/dns_kas.sh

@ -9,6 +9,7 @@
# - $KAS_Authdata (Kasserver API auth data.) # - $KAS_Authdata (Kasserver API auth data.)
# #
# Author: Martin Kammerlander, Phlegx Systems OG <martin.kammerlander@phlegx.com> # Author: Martin Kammerlander, Phlegx Systems OG <martin.kammerlander@phlegx.com>
# Updated by: Marc-Oliver Lange <git@die-lang.es>
# Credits: Inspired by dns_he.sh. Thanks a lot man! # Credits: Inspired by dns_he.sh. Thanks a lot man!
# Git repo: https://github.com/phlegx/acme.sh # Git repo: https://github.com/phlegx/acme.sh
# TODO: Better Error handling # TODO: Better Error handling
@ -19,7 +20,7 @@ dns_kas_add(){
_fulldomain=$1 _fulldomain=$1
_txtvalue=$2 _txtvalue=$2
_info "Using DNS-01 All-inkl/Kasserver hook" _info "Using DNS-01 All-inkl/Kasserver hook"
_info "Adding or Updating $_fulldomain DNS TXT entry on All-inkl/Kasserver"
_info "Adding $_fulldomain DNS TXT entry on All-inkl/Kasserver"
_info "Check and Save Props" _info "Check and Save Props"
_check_and_save _check_and_save
_info "Checking Zone and Record_Name" _info "Checking Zone and Record_Name"
@ -140,7 +141,7 @@ _get_zone_and_record_name() {
fi fi
done done
_zone="${_rootzone}." _zone="${_rootzone}."
_temp_record_name="$(echo "$_temp_domain" | sed "s/"$_rootzone"//g")"
_temp_record_name="$(echo "$_temp_domain" | sed "s/$_rootzone//g")"
_record_name="$(echo "$_temp_record_name" | sed 's/\.$//')" _record_name="$(echo "$_temp_record_name" | sed 's/\.$//')"
_debug2 "Zone:" "$_zone" _debug2 "Zone:" "$_zone"
_debug2 "Domain:" "$_domain" _debug2 "Domain:" "$_domain"

Loading…
Cancel
Save