summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2024-02-12 15:26:43 (GMT)
committerGitHub <noreply@github.com>2024-02-12 15:26:43 (GMT)
commitf6d7bf86563e53aeca1f764a4c61e6025049406a (patch)
tree7d8284f218a12d6fc5438d7aad81d43e91ce01bf
parentff810d907dc801212e3a3e1762ae7b2dfaa7b22a (diff)
parent2ab03d5f9c94ebd2ac666b706b3eeff090712dd0 (diff)
downloadmonitoring-plugins-f6d7bf86563e53aeca1f764a4c61e6025049406a.tar.gz
Merge pull request #1987 from euniceremoquillo/Improve-negate-plugin-helptext
Improve negate plugin helptext
-rw-r--r--plugins/negate.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/negate.c b/plugins/negate.c
index 745c12a..c5fe7e1 100644
--- a/plugins/negate.c
+++ b/plugins/negate.c
@@ -220,8 +220,10 @@ print_help (void)
220 220
221 printf (COPYRIGHT, copyright, email); 221 printf (COPYRIGHT, copyright, email);
222 222
223 printf ("%s\n", _("Negates the status of a plugin (returns OK for CRITICAL and vice-versa).")); 223 printf ("%s\n", _("Negates only the return code of a plugin (returns OK for CRITICAL and vice-versa) by default."));
224 printf ("%s\n", _("Additional switches can be used to control which state becomes what.")); 224 printf ("%s\n", _("Additional switches can be used to control:\n"));
225 printf ("\t - which state becomes what\n");
226 printf ("\t - changing the plugin output text to match the return code");
225 227
226 printf ("\n\n"); 228 printf ("\n\n");
227 229