summaryrefslogtreecommitdiffstats
path: root/plugins/check_dns.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_dns.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_dns.c')
-rw-r--r--plugins/check_dns.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/check_dns.c b/plugins/check_dns.c
index f8dbb4d..1384064 100644
--- a/plugins/check_dns.c
+++ b/plugins/check_dns.c
@@ -99,6 +99,9 @@ main (int argc, char **argv)
99 usage_va(_("Cannot catch SIGALRM")); 99 usage_va(_("Cannot catch SIGALRM"));
100 } 100 }
101 101
102 /* Parse extra opts if any */
103 argv=np_extra_opts (&argc, argv, progname);
104
102 if (process_arguments (argc, argv) == ERROR) { 105 if (process_arguments (argc, argv) == ERROR) {
103 usage_va(_("Could not parse arguments")); 106 usage_va(_("Could not parse arguments"));
104 } 107 }
@@ -457,6 +460,7 @@ print_help (void)
457 print_usage (); 460 print_usage ();
458 461
459 printf (_(UT_HELP_VRSN)); 462 printf (_(UT_HELP_VRSN));
463 printf (_(UT_EXTRA_OPTS));
460 464
461 printf (" -H, --hostname=HOST\n"); 465 printf (" -H, --hostname=HOST\n");
462 printf (" %s\n", _("The name or address you want to query")); 466 printf (" %s\n", _("The name or address you want to query"));
@@ -475,6 +479,13 @@ print_help (void)
475 printf (" %s\n", _("Return critical if elapsed time exceeds value. Default off")); 479 printf (" %s\n", _("Return critical if elapsed time exceeds value. Default off"));
476 480
477 printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT); 481 printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT);
482
483#ifdef NP_EXTRA_OPTS
484 printf ("\n");
485 printf ("%s\n", _("Notes:"));
486 printf (_(UT_EXTRA_OPTS_NOTES));
487#endif
488
478 printf (_(UT_SUPPORT)); 489 printf (_(UT_SUPPORT));
479} 490}
480 491