Skip to content
Snippets Groups Projects
Commit 6ef85318 authored by Till Brehm's avatar Till Brehm
Browse files

Update letsencrypt.inc.php

parent 8bb306ef
No related branches found
No related tags found
No related merge requests found
......@@ -415,6 +415,10 @@ class letsencrypt {
if($use_acme) {
$letsencrypt_cmd = $this->get_acme_command($temp_domains, $key_file, $bundle_file, $crt_file, $server_type);
$allow_return_codes = array(2);
// Cleanup ssl cert symlinks, if exists
if(@is_link($key_file)) unlink($key_file);
if(@is_link($bundle_file)) unlink($bundle_file);
if(@is_link($crt_file)) unlink($crt_file);
} else {
$letsencrypt_cmd = $this->get_certbot_command($temp_domains);
umask($old_umask);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment