From 8d281ac12189135237c72b066c143547146f5e8e Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Thu, 3 Apr 2025 19:47:16 +0100 Subject: certmanager: Remove obsolete index log (replaced by shell command) This information can now be retrieved on-demand using the debug:cert_index() command, so we don't need to log it after every scan (it is rather verbose). --- core/certmanager.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/core/certmanager.lua b/core/certmanager.lua index c08bcc84..b13d57b3 100644 --- a/core/certmanager.lua +++ b/core/certmanager.lua @@ -127,7 +127,6 @@ local function index_certs(dir, files_by_name, depth_limit) log("debug", "Skipping non-certificate (based on filename): %s", full); end end - log("debug", "Certificate index in %s: %q", dir, files_by_name); -- | hostname | filename | service | return files_by_name; end -- cgit v1.2.3 From 07c3ce955c785449747a9248a88c161d7bbf9edc Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Thu, 3 Apr 2025 19:56:11 +0100 Subject: .luacheckrc: Ignore config files in spec/tls --- .luacheckrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.luacheckrc b/.luacheckrc index 09225d01..1a392dab 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -131,6 +131,11 @@ files["spec/"] = { std = "+busted"; globals = { "randomize" }; } +files["spec/tls"] = { + -- luacheck complains about the config files here, + -- but we don't really care about them + only = {}; +} files["prosody.cfg.lua"] = { ignore = { "131" }; globals = { -- cgit v1.2.3 From db3735d9745f948268dbbe43c24caf3614f140c4 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Thu, 3 Apr 2025 19:58:57 +0100 Subject: mod_admin_shell: Visual tweaks to the output of debug:cert_index() --- plugins/mod_admin_shell.lua | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/plugins/mod_admin_shell.lua b/plugins/mod_admin_shell.lua index 56bc3cc9..d6d082f3 100644 --- a/plugins/mod_admin_shell.lua +++ b/plugins/mod_admin_shell.lua @@ -2410,10 +2410,17 @@ function def_env.debug:cert_index(path) local sink = logger.add_simple_sink(function (source, level, message) if source == "certmanager" then - self.session.print(source, level, message); + if level == "debug" or level == "info" then + level = "II"; + elseif level == "warn" or level == "error" then + level = "EE"; + end + self.session.print(level..": "..message); end end); + print("II: Scanning "..path.."..."); + local index = {}; cm.index_certs(path, index) @@ -2436,7 +2443,7 @@ function def_env.debug:cert_index(path) { title = "Service", width = 5 }; }, self.session.width); print(row()); - + print(("-"):rep(self.session.width or 80)); for domain, certs in it.sorted_pairs(index) do for cert_file, services in it.sorted_pairs(certs) do for service in it.sorted_pairs(services) do -- cgit v1.2.3