2
0
mirror of https://github.com/acmesh-official/acme.sh synced 2025-09-01 14:55:26 +00:00
This commit is contained in:
StefanAbl
2020-01-18 13:53:26 +01:00
parent 0f54cf83f4
commit 6e3ba3ca45

View File

@@ -12,7 +12,6 @@ dns_dynv6_add() {
_debug fulldomain "$fulldomain"
_debug txtvalue "$txtvalue"
_get_keyfile
_info "using keyfile $dynv6_keyfile"
_get_domain "$fulldomain"
_your_hosts="$(ssh -i "$dynv6_keyfile" api@dynv6.com hosts)"
@@ -72,7 +71,6 @@ _generate_new_key() {
_err "There is already a file in $dynv6_keyfile or $dynv6_keyfile.pub"
return 1
fi
}
#Usage: _acme-challenge.www.example.dynv6.net
#returns
@@ -113,13 +111,11 @@ _get_keyfile() {
_generate_new_key
_info "Please add this key to dynv6.com $(cat "$dynv6_keyfile.pub")"
_info "Hit Enter to contiue"
read _
read -r _
#save the credentials to the account conf file.
else
dynv6_keyfile="$KEY"
fi
_saveaccountconf_mutable dynv6_keyfile "$dynv6_keyfile"
fi
}