mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-20 05:11:43 +00:00
World4You cleaning
This commit is contained in:
parent
fbcbc10174
commit
48942de75e
@ -47,13 +47,11 @@ dns_world4you_add() {
|
|||||||
|
|
||||||
_resethttp
|
_resethttp
|
||||||
export ACME_HTTP_NO_REDIRECTS=1
|
export ACME_HTTP_NO_REDIRECTS=1
|
||||||
|
|
||||||
body="AddDnsRecordForm[name]=$record&AddDnsRecordForm[dnsType][type]=TXT&\
|
body="AddDnsRecordForm[name]=$record&AddDnsRecordForm[dnsType][type]=TXT&\
|
||||||
AddDnsRecordForm[value]=$value&AddDnsRecordForm[aktivPaket]=$paketnr&AddDnsRecordForm[uniqueFormIdDP]=$formiddp&\
|
AddDnsRecordForm[value]=$value&AddDnsRecordForm[aktivPaket]=$paketnr&AddDnsRecordForm[uniqueFormIdDP]=$formiddp&\
|
||||||
AddDnsRecordForm[uniqueFormIdTTL]=$formidttl&AddDnsRecordForm[_token]=$form_token"
|
AddDnsRecordForm[uniqueFormIdTTL]=$formidttl&AddDnsRecordForm[_token]=$form_token"
|
||||||
_info "Adding record..."
|
_info "Adding record..."
|
||||||
ret=$(_post "$body" "$WORLD4YOU_API/$paketnr/dns" '' POST 'application/x-www-form-urlencoded')
|
ret=$(_post "$body" "$WORLD4YOU_API/$paketnr/dns" '' POST 'application/x-www-form-urlencoded')
|
||||||
|
|
||||||
_resethttp
|
_resethttp
|
||||||
|
|
||||||
if grep '302' >/dev/null <"$HTTP_HEADER"; then
|
if grep '302' >/dev/null <"$HTTP_HEADER"; then
|
||||||
@ -72,9 +70,6 @@ dns_world4you_rm() {
|
|||||||
_debug fulldomain "$fqdn"
|
_debug fulldomain "$fqdn"
|
||||||
_debug txtvalue "$value"
|
_debug txtvalue "$value"
|
||||||
|
|
||||||
tld=$(echo "$fqdn" | _egrep_o '[^.]*\.[^.]*$')
|
|
||||||
record=$(echo "$fqdn" | cut -c"1-$((${#fqdn} - ${#tld} - 1))")
|
|
||||||
|
|
||||||
_login
|
_login
|
||||||
if [ "$?" != 0 ]; then
|
if [ "$?" != 0 ]; then
|
||||||
return 1
|
return 1
|
||||||
@ -106,13 +101,11 @@ dns_world4you_rm() {
|
|||||||
|
|
||||||
_resethttp
|
_resethttp
|
||||||
export ACME_HTTP_NO_REDIRECTS=1
|
export ACME_HTTP_NO_REDIRECTS=1
|
||||||
|
|
||||||
body="DeleteDnsRecordForm[recordId]=$recordid&DeleteDnsRecordForm[aktivPaket]=$paketnr&\
|
body="DeleteDnsRecordForm[recordId]=$recordid&DeleteDnsRecordForm[aktivPaket]=$paketnr&\
|
||||||
DeleteDnsRecordForm[uniqueFormIdDP]=$formiddp&DeleteDnsRecordForm[uniqueFormIdTTL]=$formidttl&\
|
DeleteDnsRecordForm[uniqueFormIdDP]=$formiddp&DeleteDnsRecordForm[uniqueFormIdTTL]=$formidttl&\
|
||||||
DeleteDnsRecordForm[_token]=$form_token"
|
DeleteDnsRecordForm[_token]=$form_token"
|
||||||
_info "Removing record..."
|
_info "Removing record..."
|
||||||
ret=$(_post "$body" "$WORLD4YOU_API/$paketnr/deleteRecord" '' POST 'application/x-www-form-urlencoded')
|
ret=$(_post "$body" "$WORLD4YOU_API/$paketnr/deleteRecord" '' POST 'application/x-www-form-urlencoded')
|
||||||
|
|
||||||
_resethttp
|
_resethttp
|
||||||
|
|
||||||
if grep '302' >/dev/null <"$HTTP_HEADER"; then
|
if grep '302' >/dev/null <"$HTTP_HEADER"; then
|
||||||
|
Loading…
Reference in New Issue
Block a user