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
a889d689
Commit
a889d689
authored
Dec 27, 2015
by
neil
Browse files
Opps, fix cert format
parent
d4df6ad1
Changes
1
Hide whitespace changes
Inline
Side-by-side
le.sh
View file @
a889d689
...
...
@@ -382,16 +382,16 @@ issue() {
done
_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
\"
}"
Le_LinkCert
=
$(
grep
-i
'^Location'
$CURL_HEADER
|
cut
-d
" "
-f
2
)
Le_LinkCert
=
"
$(
grep
-i
-o
'^Location
.*
'
$CURL_HEADER
|
sed
's/\r//g'
|
cut
-d
" "
-f
2
)
"
_setopt
$DOMAIN_CONF
"Le_LinkCert"
"="
"
$Le_LinkCert
"
if
[
"
$Le_LinkCert
"
]
;
then
if
[
"
$Le_LinkCert
"
]
;
then
echo
-----BEGIN
CERTIFICATE-----
>
$CERT_PATH
echo
$response
|
base64
|
sed
"s/ /
\n
/g"
>>
$CERT_PATH
curl
--silent
$Le_LinkCert
|
base64
>>
$CERT_PATH
echo
-----END
CERTIFICATE-----
>>
$CERT_PATH
_info
"Cert success."
cat
$CERT_PATH
...
...
@@ -415,7 +415,7 @@ issue() {
if
[
"
$Le_LinkIssuer
"
]
;
then
_get
"
$Le_LinkIssuer
"
echo
-----BEGIN
CERTIFICATE-----
>
$CA_CERT_PATH
echo
$response
|
base64
|
sed
"s/ /
\n
/g"
>>
$CA_CERT_PATH
curl
--silent
$Le_LinkIssuer
|
base64
>>
$CA_CERT_PATH
echo
-----END
CERTIFICATE-----
>>
$CA_CERT_PATH
_info
"The intermediate CA cert is in
$CA_CERT_PATH
"
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