summaryrefslogtreecommitdiffstats
path: root/plugins/check_disk.c
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2008-05-07 10:02:42 (GMT)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2008-05-07 10:02:42 (GMT)
commit44f8455b2cf248c6f50c35bfc3510d2946084c5b (patch)
tree26b696c5d61872f1d41466be9fcc650c22d75aeb /plugins/check_disk.c
parent4d157889e3018119e07bdcc7f48afde1422f7396 (diff)
downloadmonitoring-plugins-44f8455b2cf248c6f50c35bfc3510d2946084c5b.tar.gz
Added support for --extra-opts in all C plugins (disabled by default, see configure --help)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1991 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_disk.c')
-rw-r--r--plugins/check_disk.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c
index 7048a56..e9e7219 100644
--- a/plugins/check_disk.c
+++ b/plugins/check_disk.c
@@ -192,6 +192,9 @@ main (int argc, char **argv)
192 192
193 mount_list = read_file_system_list (0); 193 mount_list = read_file_system_list (0);
194 194
195 /* Parse extra opts if any */
196 argv = np_extra_opts (&argc, argv, progname);
197
195 if (process_arguments (argc, argv) == ERROR) 198 if (process_arguments (argc, argv) == ERROR)
196 usage4 (_("Could not parse arguments")); 199 usage4 (_("Could not parse arguments"));
197 200
@@ -903,6 +906,7 @@ print_help (void)
903 print_usage (); 906 print_usage ();
904 907
905 printf (_(UT_HELP_VRSN)); 908 printf (_(UT_HELP_VRSN));
909 printf (_(UT_EXTRA_OPTS));
906 910
907 printf (" %s\n", "-w, --warning=INTEGER"); 911 printf (" %s\n", "-w, --warning=INTEGER");
908 printf (" %s\n", _("Exit with WARNING status if less than INTEGER units of disk are free")); 912 printf (" %s\n", _("Exit with WARNING status if less than INTEGER units of disk are free"));
@@ -955,6 +959,13 @@ print_help (void)
955 printf (_(UT_VERBOSE)); 959 printf (_(UT_VERBOSE));
956 printf (" %s\n", "-X, --exclude-type=TYPE"); 960 printf (" %s\n", "-X, --exclude-type=TYPE");
957 printf (" %s\n", _("Ignore all filesystems of indicated type (may be repeated)")); 961 printf (" %s\n", _("Ignore all filesystems of indicated type (may be repeated)"));
962
963#ifdef NP_EXTRA_OPTS
964 printf ("\n");
965 printf ("%s\n", _("Notes:"));
966 printf (_(UT_EXTRA_OPTS_NOTES));
967#endif
968
958 printf ("\n"); 969 printf ("\n");
959 printf ("%s\n", _("Examples:")); 970 printf ("%s\n", _("Examples:"));
960 printf (" %s\n", "check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /"); 971 printf (" %s\n", "check_disk -w 10% -c 5% -p /tmp -p /var -C -w 100000 -c 50000 -p /");