fix wrong parameter for acme.sh --delete when ecc certificates are used

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2019-07-19 11:43:14 +02:00
parent 6c0fb007e4
commit 5658717653

View File

@@ -304,7 +304,7 @@ class Domain
if (file_exists($certificate_folder)) {
$params = " --remove -d " . $domainname;
if (\Froxlor\Settings::Get('system.leecc') > 0) {
$params .= " -ecc";
$params .= " --ecc";
}
// run remove command
\Froxlor\FileDir::safe_exec($acmesh . $params);