summaryrefslogtreecommitdiffstats
path: root/plugins/check_mysql.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_mysql.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_mysql.c')
-rw-r--r--plugins/check_mysql.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c
index 3d7426d..a9f0f60 100644
--- a/plugins/check_mysql.c
+++ b/plugins/check_mysql.c
@@ -82,6 +82,9 @@ main (int argc, char **argv)
82 bindtextdomain (PACKAGE, LOCALEDIR); 82 bindtextdomain (PACKAGE, LOCALEDIR);
83 textdomain (PACKAGE); 83 textdomain (PACKAGE);
84 84
85 /* Parse extra opts if any */
86 argv=np_extra_opts (&argc, argv, progname);
87
85 if (process_arguments (argc, argv) == ERROR) 88 if (process_arguments (argc, argv) == ERROR)
86 usage4 (_("Could not parse arguments")); 89 usage4 (_("Could not parse arguments"));
87 90
@@ -385,6 +388,7 @@ print_help (void)
385 print_usage (); 388 print_usage ();
386 389
387 printf (_(UT_HELP_VRSN)); 390 printf (_(UT_HELP_VRSN));
391 printf (_(UT_EXTRA_OPTS));
388 392
389 printf (_(UT_HOST_PORT), 'P', myport); 393 printf (_(UT_HOST_PORT), 'P', myport);
390 printf (" %s\n", "-s, --socket=STRING"); 394 printf (" %s\n", "-s, --socket=STRING");
@@ -412,6 +416,12 @@ print_help (void)
412 printf (" %s\n", _("using the default unix socket. You can force TCP on localhost by using an")); 416 printf (" %s\n", _("using the default unix socket. You can force TCP on localhost by using an"));
413 printf (" %s\n", _("IP address or FQDN ('localhost' will use the socket as well).")); 417 printf (" %s\n", _("IP address or FQDN ('localhost' will use the socket as well)."));
414 418
419#ifdef NP_EXTRA_OPTS
420 printf ("\n");
421 printf ("%s\n", _("Notes:"));
422 printf (_(UT_EXTRA_OPTS_NOTES));
423#endif
424
415 printf (_(UT_SUPPORT)); 425 printf (_(UT_SUPPORT));
416} 426}
417 427