Add missing args to certbot command, was causing failures in rovokation

This commit is contained in:
Jamie Curnow
2024-01-12 17:04:55 +10:00
parent 1be87f48c1
commit 834fb1a361

View File

@ -1041,6 +1041,8 @@ const internalCertificate = {
const mainCmd = certbotCommand + ' revoke ' +
'--config "' + letsencryptConfig + '" ' +
'--work-dir "/tmp/letsencrypt-lib" ' +
'--logs-dir "/tmp/letsencrypt-log" ' +
'--cert-path "/etc/letsencrypt/live/npm-' + certificate.id + '/fullchain.pem" ' +
'--delete-after-revoke ' +
(letsencryptStaging ? '--staging' : '');