From 2c99d4a687095d0b461eb124b153d7a67f024888 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Fri, 14 Oct 2022 12:00:15 +0200 Subject: [PATCH] net/haproxy: do not call crl_update() PR: https://forum.opnsense.org/index.php?topic=30672.0 --- net/haproxy/Makefile | 1 + .../src/opnsense/scripts/OPNsense/HAProxy/exportCerts.php | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/net/haproxy/Makefile b/net/haproxy/Makefile index d5690280e..0c4fd723e 100644 --- a/net/haproxy/Makefile +++ b/net/haproxy/Makefile @@ -1,5 +1,6 @@ PLUGIN_NAME= haproxy PLUGIN_VERSION= 3.11 +PLUGIN_REVISION= 1 PLUGIN_COMMENT= Reliable, high performance TCP/HTTP load balancer PLUGIN_DEPENDS= haproxy24 PLUGIN_MAINTAINER= opnsense@moov.de diff --git a/net/haproxy/src/opnsense/scripts/OPNsense/HAProxy/exportCerts.php b/net/haproxy/src/opnsense/scripts/OPNsense/HAProxy/exportCerts.php index b28a84ecd..0dfa7bd26 100755 --- a/net/haproxy/src/opnsense/scripts/OPNsense/HAProxy/exportCerts.php +++ b/net/haproxy/src/opnsense/scripts/OPNsense/HAProxy/exportCerts.php @@ -71,7 +71,6 @@ foreach ($configNodes as $key => $value) { // CRLs require special export if ($type == 'crl') { $crl =& lookup_crl($cert_refid); - crl_update($crl); $pem_content = base64_decode($crl['text']); } else { $pem_content = str_replace("\n\n", "\n", str_replace("\r", "", base64_decode((string)$cert->crt)));