mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 08:21:49 +00:00
first attempt to make travis happy
This commit is contained in:
parent
f5f0680ec7
commit
6cc9f49d97
@ -14,17 +14,10 @@ dns_dynv6_add() {
|
|||||||
_get_keyfile
|
_get_keyfile
|
||||||
_info "using keyfile $dynv6_keyfile"
|
_info "using keyfile $dynv6_keyfile"
|
||||||
_your_hosts="$(ssh -i "$dynv6_keyfile" api@dynv6.com hosts)"
|
_your_hosts="$(ssh -i "$dynv6_keyfile" api@dynv6.com hosts)"
|
||||||
|
|
||||||
if ! _get_domain "$fulldomain" "$_your_hosts"; then
|
if ! _get_domain "$fulldomain" "$_your_hosts"; then
|
||||||
_err "Host not found on your account"
|
_err "Host not found on your account"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
# if ! _contains "$_your_hosts" "$_host"; then
|
|
||||||
# _debug "The host is $_host and the record $_record"
|
|
||||||
# _debug "Dynv6 returned $_your_hosts"
|
|
||||||
# _err "The host $_host does not exists on your dynv6 account"
|
|
||||||
# return 1
|
|
||||||
# fi
|
|
||||||
_debug "found host on your account"
|
_debug "found host on your account"
|
||||||
returnval="$(ssh -i "$dynv6_keyfile" api@dynv6.com hosts \""$_host"\" records set \""$_record"\" txt data \""$txtvalue"\")"
|
returnval="$(ssh -i "$dynv6_keyfile" api@dynv6.com hosts \""$_host"\" records set \""$_record"\" txt data \""$txtvalue"\")"
|
||||||
_debug "Dynv6 returend this after record was added: $returnval"
|
_debug "Dynv6 returend this after record was added: $returnval"
|
||||||
@ -53,16 +46,9 @@ dns_dynv6_rm() {
|
|||||||
_err "Host not found on your account"
|
_err "Host not found on your account"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
# if ! _contains "$_your_hosts" "$_host"; then
|
|
||||||
# _debug "The host is $_host and the record $_record"
|
|
||||||
# _debug "Dynv6 returned $_your_hosts"
|
|
||||||
# _err "The host $_host does not exists on your dynv6 account"
|
|
||||||
# return 1
|
|
||||||
# fi
|
|
||||||
_debug "found host on your account"
|
_debug "found host on your account"
|
||||||
_info "$(ssh -i "$dynv6_keyfile" api@dynv6.com hosts "\"$_host\"" records del "\"$_record\"" txt)"
|
_info "$(ssh -i "$dynv6_keyfile" api@dynv6.com hosts "\"$_host\"" records del "\"$_record\"" txt)"
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
}
|
}
|
||||||
#################### Private functions below ##################################
|
#################### Private functions below ##################################
|
||||||
#Usage: No Input required
|
#Usage: No Input required
|
||||||
|
Loading…
Reference in New Issue
Block a user