mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-31 15:53:33 +00:00 
			
		
		
		
	Prevent installing same plugin over and over
This commit is contained in:
		| @@ -115,7 +115,9 @@ const setupCertbotPlugins = () => { | |||||||
|  |  | ||||||
| 				certificates.map(function (certificate) { | 				certificates.map(function (certificate) { | ||||||
| 					if (certificate.meta && certificate.meta.dns_challenge === true) { | 					if (certificate.meta && certificate.meta.dns_challenge === true) { | ||||||
| 						plugins.push(certificate.meta.dns_provider); | 						if (plugins.indexOf(certificate.meta.dns_provider) === -1) { | ||||||
|  | 							plugins.push(certificate.meta.dns_provider); | ||||||
|  | 						} | ||||||
|  |  | ||||||
| 						// Make sure credentials file exists | 						// Make sure credentials file exists | ||||||
| 						const credentials_loc = '/etc/letsencrypt/credentials/credentials-' + certificate.id; | 						const credentials_loc = '/etc/letsencrypt/credentials/credentials-' + certificate.id; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user