From 649b201568a59964c5410e91fa9f352fa5d5d5db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20K=C3=A4stle?= <12514511+RincewindsHat@users.noreply.github.com> Date: Fri, 5 Jun 2026 00:03:16 +0200 Subject: [PATCH] check_swap: implement ok summary --- plugins/check_swap.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/check_swap.c b/plugins/check_swap.c index dbf53a00..3d7e3260 100644 --- a/plugins/check_swap.c +++ b/plugins/check_swap.c @@ -100,6 +100,9 @@ int main(int argc, char **argv) { double percent_used; mp_check overall = mp_check_init(); + + mp_set_ok_summary(&overall, "Swap check is OK"); + if (config.output_format_is_set) { mp_set_format(config.output_format); }