From 151266ef4e7d0135e58354bd30cc5ce4ddb359de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20K=C3=A4stle?= <12514511+RincewindsHat@users.noreply.github.com> Date: Thu, 4 Jun 2026 22:37:23 +0200 Subject: [PATCH] check_disk: implement ok summary --- plugins/check_disk.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/check_disk.c b/plugins/check_disk.c index e773e56c..65169105 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c @@ -162,6 +162,9 @@ int main(int argc, char **argv) { } mp_check overall = mp_check_init(); + + mp_set_ok_summary(&overall, "Filesystem checks succeeded"); + if (config.path_select_list.length == 0) { mp_subcheck none_sc = mp_subcheck_init(); xasprintf(&none_sc.output, "No filesystems were found for the provided parameters");