From c27b015a6393a0b80c7652ae86425bd88025d674 Mon Sep 17 00:00:00 2001 From: Arif Alam Date: Fri, 29 Aug 2025 10:01:02 -0400 Subject: [PATCH] est_client: fix certificate issuer matching Signed-off-by: Arif Alam --- feeds/tip/cloud_discovery/files/usr/bin/est_client | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feeds/tip/cloud_discovery/files/usr/bin/est_client b/feeds/tip/cloud_discovery/files/usr/bin/est_client index 6102efbae..b22c06340 100755 --- a/feeds/tip/cloud_discovery/files/usr/bin/est_client +++ b/feeds/tip/cloud_discovery/files/usr/bin/est_client @@ -167,7 +167,7 @@ function fwtool() { let issuer = pipe.read("all"); pipe.close(); - if (!(match(issuer, /OpenLAN/) && match(issuer, /Birth CA/))) + if (!(match(issuer, /OpenLAN/) && match(issuer, /Birth/))) return 0; ulog(LOG_INFO, 'The issuer is insta\n');