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
fe811ce3
Unverified
Commit
fe811ce3
authored
Nov 29, 2020
by
neil
Committed by
GitHub
Nov 29, 2020
Browse files
Merge pull request #3253 from tsoybe/master
fix: wrong ttl issue#2925
parents
9878856d
7dfc5a78
Changes
1
Show whitespace changes
Inline
Side-by-side
dnsapi/dns_desec.sh
View file @
fe811ce3
...
...
@@ -61,7 +61,7 @@ dns_desec_add() {
fi
_debug txtvalues
"
$txtvalues
"
_info
"Adding record"
body
=
"[{
\"
subname
\"
:
\"
$_sub_domain
\"
,
\"
type
\"
:
\"
TXT
\"
,
\"
records
\"
:[
$txtvalues
],
\"
ttl
\"
:
6
0}]"
body
=
"[{
\"
subname
\"
:
\"
$_sub_domain
\"
,
\"
type
\"
:
\"
TXT
\"
,
\"
records
\"
:[
$txtvalues
],
\"
ttl
\"
:
360
0}]"
if
_desec_rest PUT
"
$REST_API
/
$DEDYN_NAME
/rrsets/"
"
$body
"
;
then
if
_contains
"
$response
"
"
$txtvalue
"
;
then
...
...
@@ -130,7 +130,7 @@ dns_desec_rm() {
_debug txtvalues
"
$txtvalues
"
_info
"Deleting record"
body
=
"[{
\"
subname
\"
:
\"
$_sub_domain
\"
,
\"
type
\"
:
\"
TXT
\"
,
\"
records
\"
:[
$txtvalues
],
\"
ttl
\"
:
6
0}]"
body
=
"[{
\"
subname
\"
:
\"
$_sub_domain
\"
,
\"
type
\"
:
\"
TXT
\"
,
\"
records
\"
:[
$txtvalues
],
\"
ttl
\"
:
360
0}]"
_desec_rest PUT
"
$REST_API
/
$DEDYN_NAME
/rrsets/"
"
$body
"
if
[
"
$_code
"
=
"200"
]
;
then
_info
"Deleted, OK"
...
...
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