From: Thomas Lamprecht Date: Tue, 16 Mar 2021 16:04:35 +0000 (+0100) Subject: dns: add new plugins to schema and install them X-Git-Url: https://git.proxmox.com/?p=proxmox-acme.git;a=commitdiff_plain;h=21e6ed300747091929b194d8d9395e6b2e098433 dns: add new plugins to schema and install them Signed-off-by: Thomas Lamprecht --- diff --git a/src/Makefile b/src/Makefile index 2f9e62e..20be6a4 100644 --- a/src/Makefile +++ b/src/Makefile @@ -57,6 +57,7 @@ ACME_SOURCES = \ dnsapi/dns_infomaniak.sh \ dnsapi/dns_internetbs.sh \ dnsapi/dns_inwx.sh \ + dnsapi/dns_ionos.sh \ dnsapi/dns_ispconfig.sh \ dnsapi/dns_jd.sh \ dnsapi/dns_joker.sh \ @@ -100,12 +101,15 @@ ACME_SOURCES = \ dnsapi/dns_pdns.sh \ dnsapi/dns_pleskxml.sh \ dnsapi/dns_pointhq.sh \ + dnsapi/dns_rackcorp.sh \ dnsapi/dns_rackspace.sh \ dnsapi/dns_rcode0.sh \ dnsapi/dns_regru.sh \ + dnsapi/dns_scaleway.sh \ dnsapi/dns_schlundtech.sh \ dnsapi/dns_selectel.sh \ dnsapi/dns_servercow.sh \ + dnsapi/dns_simply.sh \ dnsapi/dns_tele3.sh \ dnsapi/dns_transip.sh \ dnsapi/dns_ultra.sh \ diff --git a/src/PVE/ACME/DNSChallenge.pm b/src/PVE/ACME/DNSChallenge.pm index 632210e..300cdc9 100644 --- a/src/PVE/ACME/DNSChallenge.pm +++ b/src/PVE/ACME/DNSChallenge.pm @@ -213,6 +213,7 @@ my $plugins = { }, }, }, + 'ionos' => {}, 'ispconfig' => {}, 'jd' => {}, 'joker' => {}, @@ -308,12 +309,15 @@ my $plugins = { }, 'pleskxml' => {}, 'pointhq' => {}, + 'rackcorp' => {}, 'rackspace' => {}, 'rcode0' => {}, 'regru' => {}, + 'scaleway' => {}, 'schlundtech' => {}, 'selectel' => {}, 'servercow' => {}, + 'simply' => {}, 'tele3' => {}, 'transip' => {}, 'ultra' => {},