mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-22 13:11:41 +00:00
This commit is contained in:
parent
4249e13eb4
commit
8201458332
7
acme.sh
7
acme.sh
@ -4308,7 +4308,12 @@ _installcert() {
|
|||||||
if [ -f "$_real_key" ] && [ ! "$IS_RENEW" ]; then
|
if [ -f "$_real_key" ] && [ ! "$IS_RENEW" ]; then
|
||||||
cp "$_real_key" "$_backup_path/key.bak"
|
cp "$_real_key" "$_backup_path/key.bak"
|
||||||
fi
|
fi
|
||||||
cat "$CERT_KEY_PATH" >"$_real_key"
|
if [ -f "$_real_key" ]; then
|
||||||
|
cat "$CERT_KEY_PATH" >"$_real_key"
|
||||||
|
else
|
||||||
|
cat "$CERT_KEY_PATH" >"$_real_key"
|
||||||
|
chmod 700 "$_real_key"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$_real_fullchain" ]; then
|
if [ "$_real_fullchain" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user