Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
342b4810
Commit
342b4810
authored
Nov 29, 2020
by
Lorenz Stechauner
Browse files
World4You fix for no redirects
parent
5f3e7f02
Changes
1
Hide whitespace changes
Inline
Side-by-side
dnsapi/dns_world4you.sh
View file @
342b4810
...
...
@@ -45,8 +45,8 @@ dns_world4you_add() {
return
3
fi
ACME_HTTP_NO_REDIRECTS
=
1
_resethttp
ACME_HTTP_NO_REDIRECTS
=
1
body
=
"AddDnsRecordForm[name]=
$record
&AddDnsRecordForm[dnsType][type]=TXT&
\
AddDnsRecordForm[value]=
$value
&AddDnsRecordForm[aktivPaket]=
$paketnr
&AddDnsRecordForm[uniqueFormIdDP]=
$formiddp
&
\
...
...
@@ -54,7 +54,6 @@ AddDnsRecordForm[uniqueFormIdTTL]=$formidttl&AddDnsRecordForm[_token]=$form_toke
_info
"Adding record..."
ret
=
$(
_post
"
$body
"
"
$WORLD4YOU_API
/
$paketnr
/dns"
''
POST
'application/x-www-form-urlencoded'
)
unset
ACME_HTTP_NO_REDIRECTS
_resethttp
if
grep
'302'
>
/dev/null <
"
$HTTP_HEADER
"
;
then
...
...
@@ -105,8 +104,8 @@ dns_world4you_rm() {
recordid
=
$(
printf
"TXT:%s.:
\"
%s
\"
"
"
$fqdn
"
"
$value
"
| _base64
)
_debug recordid
"
$recordid
"
ACME_HTTP_NO_REDIRECTS
=
1
_resethttp
ACME_HTTP_NO_REDIRECTS
=
1
body
=
"DeleteDnsRecordForm[recordId]=
$recordid
&DeleteDnsRecordForm[aktivPaket]=
$paketnr
&
\
DeleteDnsRecordForm[uniqueFormIdDP]=
$formiddp
&DeleteDnsRecordForm[uniqueFormIdTTL]=
$formidttl
&
\
...
...
@@ -114,7 +113,6 @@ DeleteDnsRecordForm[_token]=$form_token"
_info
"Removing record..."
ret
=
$(
_post
"
$body
"
"
$WORLD4YOU_API
/
$paketnr
/deleteRecord"
''
POST
'application/x-www-form-urlencoded'
)
unset
ACME_HTTP_NO_REDIRECTS
_resethttp
if
grep
'302'
>
/dev/null <
"
$HTTP_HEADER
"
;
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment