Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
679bae56
Commit
679bae56
authored
Jul 12, 2021
by
Till Brehm
Browse files
Update installer_base.lib.php
parent
36cdb858
Pipeline
#9023
passed with stage
in 9 minutes and 14 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
install/lib/installer_base.lib.php
View file @
679bae56
...
...
@@ -3002,13 +3002,13 @@ class installer_base {
// Backup existing ispserver ssl files
if
(
file_exists
(
$ssl_crt_file
)
||
is_link
(
$ssl_crt_file
))
{
rename
(
$ssl_crt_file
,
$ssl_crt_file
.
'-temporary.bak'
);
copy
(
$ssl_crt_file
,
$ssl_crt_file
.
'-temporary.bak'
);
}
if
(
file_exists
(
$ssl_key_file
)
||
is_link
(
$ssl_key_file
))
{
rename
(
$ssl_key_file
,
$ssl_key_file
.
'-temporary.bak'
);
copy
(
$ssl_key_file
,
$ssl_key_file
.
'-temporary.bak'
);
}
if
(
file_exists
(
$ssl_pem_file
)
||
is_link
(
$ssl_pem_file
))
{
rename
(
$ssl_pem_file
,
$ssl_pem_file
.
'-temporary.bak'
);
copy
(
$ssl_pem_file
,
$ssl_pem_file
.
'-temporary.bak'
);
}
// Attempt to use Neilpang acme.sh first, as it is now the preferred LE client
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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