We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3630a6 commit 0353051Copy full SHA for 0353051
backend/setup.js
@@ -115,7 +115,9 @@ const setupCertbotPlugins = () => {
115
116
certificates.map(function (certificate) {
117
if (certificate.meta && certificate.meta.dns_challenge === true) {
118
- plugins.push(certificate.meta.dns_provider);
+ if (plugins.indexOf(certificate.meta.dns_provider) === -1) {
119
+ plugins.push(certificate.meta.dns_provider);
120
+ }
121
122
// Make sure credentials file exists
123
const credentials_loc = '/etc/letsencrypt/credentials/credentials-' + certificate.id;
0 commit comments