summaryrefslogtreecommitdiffstats
path: root/plugins/check_mrtg.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_mrtg.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_mrtg.c')
-rw-r--r--plugins/check_mrtg.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/check_mrtg.c b/plugins/check_mrtg.c
index cf77f8b..80e5215 100644
--- a/plugins/check_mrtg.c
+++ b/plugins/check_mrtg.c
@@ -72,6 +72,9 @@ main (int argc, char **argv)
72 bindtextdomain (PACKAGE, LOCALEDIR); 72 bindtextdomain (PACKAGE, LOCALEDIR);
73 textdomain (PACKAGE); 73 textdomain (PACKAGE);
74 74
75 /* Parse extra opts if any */
76 argv=np_extra_opts (&argc, argv, progname);
77
75 if (process_arguments (argc, argv) == ERROR) 78 if (process_arguments (argc, argv) == ERROR)
76 usage4 (_("Could not parse arguments\n")); 79 usage4 (_("Could not parse arguments\n"));
77 80
@@ -327,6 +330,7 @@ print_help (void)
327 print_usage (); 330 print_usage ();
328 331
329 printf (_(UT_HELP_VRSN)); 332 printf (_(UT_HELP_VRSN));
333 printf (_(UT_EXTRA_OPTS));
330 334
331 printf (" %s\n", "-F, --logfile=FILE"); 335 printf (" %s\n", "-F, --logfile=FILE");
332 printf (" %s\n", _("The MRTG log file containing the data you want to monitor")); 336 printf (" %s\n", _("The MRTG log file containing the data you want to monitor"));
@@ -367,6 +371,9 @@ print_help (void)
367 printf (" %s\n", _("you can always hack the code to make this plugin work for you...")); 371 printf (" %s\n", _("you can always hack the code to make this plugin work for you..."));
368 printf (" %s\n", _("- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded from")); 372 printf (" %s\n", _("- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded from"));
369 printf (" %s\n", "http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/mrtg.html"); 373 printf (" %s\n", "http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/mrtg.html");
374#ifdef NP_EXTRA_OPTS
375 printf (" -%s", _(UT_EXTRA_OPTS_NOTES));
376#endif
370 377
371 printf (_(UT_SUPPORT)); 378 printf (_(UT_SUPPORT));
372} 379}