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
bf586981
Commit
bf586981
authored
Dec 27, 2015
by
neil
Browse files
error info
parent
8c841b97
Changes
1
Show whitespace changes
Inline
Side-by-side
le.sh
View file @
bf586981
...
@@ -142,8 +142,6 @@ _send_signed_request() {
...
@@ -142,8 +142,6 @@ _send_signed_request() {
url
=
$1
url
=
$1
payload
=
$2
payload
=
$2
needbas64
=
"
$3
"
_debug url
$url
_debug url
$url
_debug payload
"
$payload
"
_debug payload
"
$payload
"
...
@@ -173,17 +171,13 @@ _send_signed_request() {
...
@@ -173,17 +171,13 @@ _send_signed_request() {
body
=
"{
\"
header
\"
:
$HEADER
,
\"
protected
\"
:
\"
$protected64
\"
,
\"
payload
\"
:
\"
$payload64
\"
,
\"
signature
\"
:
\"
$sig
\"
}"
body
=
"{
\"
header
\"
:
$HEADER
,
\"
protected
\"
:
\"
$protected64
\"
,
\"
payload
\"
:
\"
$payload64
\"
,
\"
signature
\"
:
\"
$sig
\"
}"
_debug body
"
$body
"
_debug body
"
$body
"
response
=
"
$(
$CURL
-X
POST
--data
"
$body
"
$url
)
"
if
[
"
$needbas64
"
]
;
then
response
=
$(
$CURL
-X
POST
--data
"
$body
"
$url
|
base64
)
else
response
=
$(
$CURL
-X
POST
--data
"
$body
"
$url
)
fi
responseHeaders
=
"
$(
cat
$CURL_HEADER
)
"
responseHeaders
=
"
$(
cat
$CURL_HEADER
)
"
_debug responseHeaders
"
$responseHeaders
"
_debug responseHeaders
"
$responseHeaders
"
_debug response
"
$response
"
_debug response
"
$response
"
code
=
$(
grep
^HTTP
$CURL_HEADER
|
tail
-1
|
cut
-d
" "
-f
2
)
code
=
"
$(
grep
^HTTP
$CURL_HEADER
|
tail
-1
|
cut
-d
" "
-f
2
)
"
_debug code
$code
_debug code
$code
}
}
...
@@ -400,7 +394,7 @@ issue() {
...
@@ -400,7 +394,7 @@ issue() {
_info
"Verify finished, start to sign."
_info
"Verify finished, start to sign."
der
=
$(
openssl req
-in
$CSR_PATH
-outform
DER |
base64
| _b64
)
der
=
$(
openssl req
-in
$CSR_PATH
-outform
DER |
base64
| _b64
)
_send_signed_request
"
$API
/acme/new-cert"
"{
\"
resource
\"
:
\"
new-cert
\"
,
\"
csr
\"
:
\"
$der
\"
}"
"needbas64"
_send_signed_request
"
$API
/acme/new-cert"
"{
\"
resource
\"
:
\"
new-cert
\"
,
\"
csr
\"
:
\"
$der
\"
}"
Le_LinkCert
=
$(
grep
-i
'^Location'
$CURL_HEADER
|
cut
-d
" "
-f
2
)
Le_LinkCert
=
$(
grep
-i
'^Location'
$CURL_HEADER
|
cut
-d
" "
-f
2
)
...
@@ -408,7 +402,7 @@ issue() {
...
@@ -408,7 +402,7 @@ issue() {
if
[
"
$Le_LinkCert
"
]
;
then
if
[
"
$Le_LinkCert
"
]
;
then
echo
-----BEGIN
CERTIFICATE-----
>
$CERT_PATH
echo
-----BEGIN
CERTIFICATE-----
>
$CERT_PATH
echo
$response
|
sed
"s/ /
\n
/g"
>>
$CERT_PATH
echo
$response
|
base64
|
sed
"s/ /
\n
/g"
>>
$CERT_PATH
echo
-----END
CERTIFICATE-----
>>
$CERT_PATH
echo
-----END
CERTIFICATE-----
>>
$CERT_PATH
_info
"Cert success."
_info
"Cert success."
cat
$CERT_PATH
cat
$CERT_PATH
...
@@ -422,7 +416,7 @@ issue() {
...
@@ -422,7 +416,7 @@ issue() {
_setopt
$DOMAIN_CONF
"Le_Keylength"
"="
"
$Le_Keylength
"
_setopt
$DOMAIN_CONF
"Le_Keylength"
"="
"
$Le_Keylength
"
if
[
-z
"
$Le_LinkCert
"
]
;
then
if
[
-z
"
$Le_LinkCert
"
]
;
then
_info
"Sign failed
, ToDO
"
_info
"Sign failed
:
$(
echo
"
$response
"
|
grep
-o
'"detail":"[^"]*"'
)
"
return
1
return
1
fi
fi
...
...
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