formatting

This commit is contained in:
StefanAbl 2020-07-13 16:01:46 +02:00
parent 3cd7a2e6d6
commit c849738c6f

View File

@ -156,13 +156,12 @@ _get_keyfile() {
_saveaccountconf_mutable dynv6_keyfile "$dynv6_keyfile" _saveaccountconf_mutable dynv6_keyfile "$dynv6_keyfile"
======= =======
_get_authentication() { _get_authentication() {
if [ "$DYNV6_TOKEN" ]; then dynv6_token="${DYNV6_TOKEN:-$(_readaccountconf_mutable dynv6_token)}"
_debug "Going to use the HTTP Token you specifed and saving it for futur use" if [ "$dynv6_token" ]; then
_saveaccountconf_mutable dynv6_token "$DYNV6_TOKEN" _debug "Found HTTP Token. Going to use the HTTP API and not the SSH API"
dynv6_token="$DYNV6_TOKEN" if [ "$DYNV6_TOKEN" ]; then
elif [ "$(_readaccountconf_mutable dynv6_token)" ]; then _saveaccountconf_mutable dynv6_token "$dynv6_token"
_debug "Found a previously used HTTP token going to use that" fi
dynv6_token="$(_readaccountconf_mutable dynv6_token)"
else else
_debug "no HTTP token found. Looking for an SSH key" _debug "no HTTP token found. Looking for an SSH key"
dynv6_keyfile="${dynv6_keyfile:-$(_readaccountconf_mutable dynv6_keyfile)}" dynv6_keyfile="${dynv6_keyfile:-$(_readaccountconf_mutable dynv6_keyfile)}"