From 89e3cfc88844ed1b73991e27e361abc743282f43 Mon Sep 17 00:00:00 2001 From: Marvo2011 Date: Mon, 12 Sep 2022 09:30:10 +0200 Subject: [PATCH] Replace rid, rid2 with SELFHOSTDNS_MAP export Replace rid, rid2 with SELFHOSTDNS_MAP export, required for the actual acme.sh master. --- .../library/OPNsense/AcmeClient/LeValidation/DnsSelfhost.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/security/acme-client/src/opnsense/mvc/app/library/OPNsense/AcmeClient/LeValidation/DnsSelfhost.php b/security/acme-client/src/opnsense/mvc/app/library/OPNsense/AcmeClient/LeValidation/DnsSelfhost.php index f487e9a01..881ebf792 100644 --- a/security/acme-client/src/opnsense/mvc/app/library/OPNsense/AcmeClient/LeValidation/DnsSelfhost.php +++ b/security/acme-client/src/opnsense/mvc/app/library/OPNsense/AcmeClient/LeValidation/DnsSelfhost.php @@ -41,7 +41,6 @@ class DnsSelfhost extends Base implements LeValidationInterface { $this->acme_env['SELFHOSTDNS_USERNAME'] = (string)$this->config->dns_selfhost_user; $this->acme_env['SELFHOSTDNS_PASSWORD'] = (string)$this->config->dns_selfhost_password; - $this->acme_env['SELFHOSTDNS_RID'] = (string)$this->config->dns_selfhost_rid; - $this->acme_env['SELFHOSTDNS_RID2'] = (string)$this->config->dns_selfhost_rid2; + $this->acme_env['SELFHOSTDNS_MAP'] = (string)$this->config->dns_selfhost_map; } }