summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorenz <12514511+RincewindsHat@users.noreply.github.com>2023-01-20 11:08:15 (GMT)
committerGitHub <noreply@github.com>2023-01-20 11:08:15 (GMT)
commit67b472f9d1d29b9de5312c46f13ca4f5a656c4da (patch)
tree97028d94d3dd74a9d88445621297b851b171b1c1
parentc410ad38798fde8cc278a3f1522a9571dbdb7fae (diff)
downloadmonitoring-plugins-67b472f.tar.gz
check_disk: Clarify usage possibilites (#1745)
* Clarify usage possibilites of check_disk * Remove superfluous newlines Co-authored-by: waja <waja@users.noreply.github.com>
-rw-r--r--plugins/check_disk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c
index 7018c6f..6de17f8 100644
--- a/plugins/check_disk.c
+++ b/plugins/check_disk.c
@@ -951,7 +951,7 @@ void
951print_usage (void) 951print_usage (void)
952{ 952{
953 printf ("%s\n", _("Usage:")); 953 printf ("%s\n", _("Usage:"));
954 printf (" %s -w limit -c limit [-W limit] [-K limit] {-p path | -x device}\n", progname); 954 printf (" %s {-w absolute_limit |-w percentage_limit% | -W inode_percentage_limit } {-c absolute_limit|-c percentage_limit% | -K inode_percentage_limit } {-p path | -x device}\n", progname);
955 printf ("[-C] [-E] [-e] [-f] [-g group ] [-k] [-l] [-M] [-m] [-R path ] [-r path ]\n"); 955 printf ("[-C] [-E] [-e] [-f] [-g group ] [-k] [-l] [-M] [-m] [-R path ] [-r path ]\n");
956 printf ("[-t timeout] [-u unit] [-v] [-X type] [-N type]\n"); 956 printf ("[-t timeout] [-u unit] [-v] [-X type] [-N type]\n");
957} 957}