Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
199ca77c
Commit
199ca77c
authored
Nov 19, 2020
by
neil
Browse files
fix for PebbleStrict mode test.
parent
11b980f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
acme.sh
View file @
199ca77c
...
...
@@ -5823,7 +5823,7 @@ _deactivate() {
_URL_NAME="uri"
fi
entries
=
"
$(
echo
"
$response
"
|
_egrep_o
"[^{]*
\"
type
\"
:
\"
[^
\"
]*
\"
, *
\"
status
\"
: *
\"
valid
\"
, *
\"
$_URL_NAME
\"
[^}]*
"
)
"
entries="$(echo "$response" |
tr '][' '=' | _egrep_o "challenges\": *=[^=]*=" | tr '}{' '\n' | grep "\"status\": *\"valid\"
")"
if [ -z "$entries" ]; then
_info "No valid entries found."
if [ -z "$thumbprint" ]; then
...
...
@@ -5866,7 +5866,7 @@ _deactivate() {
_debug _vtype "$_vtype"
_info "Found $_vtype"
uri
=
"
$(
echo
"
$entry
"
| _egrep_o
"
\"
$_URL_NAME
\"
:
\"
[^
\"
]*"
|
cu
t
-d
:
-f
2,3 |
tr
-d
'"'
)
"
uri="$(echo "$entry" | _egrep_o "\"$_URL_NAME\":\"[^\"]*
\"
" | t
r
-d
'" ' | cut -d : -f 2-
)"
_debug uri "$uri"
if [ "$_d_type" ] && [ "$_d_type" != "$_vtype" ]; 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