From 09a5860ea3a8a099e77f34f3341a00bc2d8b1d74 Mon Sep 17 00:00:00 2001 From: MickLesk Date: Sun, 19 Jul 2026 10:00:29 +0200 Subject: [PATCH] Warn when host CA inheritance is disabled Changes the log level from info to warning when host CA inheritance is skipped by configuration, and includes the number of host certificates detected. This makes intentional skips more visible while still showing useful context. --- misc/build.func | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/build.func b/misc/build.func index 63de848ed..6e3a9e810 100644 --- a/misc/build.func +++ b/misc/build.func @@ -4024,7 +4024,7 @@ _apply_host_ca_certs_in_container() { case "${inherit_host_ca,,}" in no | false | 0 | off) - msg_info "Skipping host CA inheritance by configuration" + msg_warn "Skipping host CA inheritance by configuration (${#host_certs[@]} host certificate(s) available)" return 0 ;; esac