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
177b57e1
Commit
177b57e1
authored
Feb 28, 2017
by
neilpang
Browse files
fix wget content on 404 error
parent
810c129c
Changes
2
Hide whitespace changes
Inline
Side-by-side
acme.sh
View file @
177b57e1
...
@@ -1485,6 +1485,11 @@ _inithttp() {
...
@@ -1485,6 +1485,11 @@ _inithttp() {
fi
fi
fi
fi
#from wget 1.14: do not skip body on 404 error
if
[
"
$_ACME_WGET
"
]
&&
_contains
"
$(
$_ACME_WGET
--help
)
"
"--content-on-error"
;
then
_ACME_WGET
=
"
$_ACME_WGET
--content-on-error "
fi
__HTTP_INITIALIZED
=
1
__HTTP_INITIALIZED
=
1
}
}
...
...
dnsapi/dns_gandi_livedns.sh
View file @
177b57e1
...
@@ -36,8 +36,9 @@ dns_gandi_livedns_add() {
...
@@ -36,8 +36,9 @@ dns_gandi_livedns_add() {
_debug domain
"
$_domain
"
_debug domain
"
$_domain
"
_debug sub_domain
"
$_sub_domain
"
_debug sub_domain
"
$_sub_domain
"
_gandi_livedns_rest PUT
"domains/
$_domain
/records/
$_sub_domain
/TXT"
"{
\"
rrset_ttl
\"
: 300,
\"
rrset_values
\"
:[
\"
$txtvalue
\"
]}"
_gandi_livedns_rest PUT
"domains/
$_domain
/records/
$_sub_domain
/TXT"
"{
\"
rrset_ttl
\"
: 300,
\"
rrset_values
\"
:[
\"
$txtvalue
\"
]}"
\
_contains
"
$response
"
'{"message": "Zone Record Created"}'
&&
_contains
"
$response
"
'{"message": "Zone Record Created"}'
\
&&
_info
"Add
$(
__green
"success"
)
"
}
}
#Usage: fulldomain txtvalue
#Usage: fulldomain txtvalue
...
...
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