diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-05-07 10:02:42 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-05-07 10:02:42 (GMT) |
commit | 44f8455b2cf248c6f50c35bfc3510d2946084c5b (patch) | |
tree | 26b696c5d61872f1d41466be9fcc650c22d75aeb /plugins/check_hpjd.c | |
parent | 4d157889e3018119e07bdcc7f48afde1422f7396 (diff) | |
download | monitoring-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_hpjd.c')
-rw-r--r-- | plugins/check_hpjd.c | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/plugins/check_hpjd.c b/plugins/check_hpjd.c index e20a76d..044f08f 100644 --- a/plugins/check_hpjd.c +++ b/plugins/check_hpjd.c | |||
@@ -100,6 +100,9 @@ main (int argc, char **argv) | |||
100 | bindtextdomain (PACKAGE, LOCALEDIR); | 100 | bindtextdomain (PACKAGE, LOCALEDIR); |
101 | textdomain (PACKAGE); | 101 | textdomain (PACKAGE); |
102 | 102 | ||
103 | /* Parse extra opts if any */ | ||
104 | argv=np_extra_opts (&argc, argv, progname); | ||
105 | |||
103 | if (process_arguments (argc, argv) == ERROR) | 106 | if (process_arguments (argc, argv) == ERROR) |
104 | usage4 (_("Could not parse arguments")); | 107 | usage4 (_("Could not parse arguments")); |
105 | 108 | ||
@@ -390,19 +393,26 @@ print_help (void) | |||
390 | printf (COPYRIGHT, copyright, email); | 393 | printf (COPYRIGHT, copyright, email); |
391 | 394 | ||
392 | printf ("%s\n", _("This plugin tests the STATUS of an HP printer with a JetDirect card.")); | 395 | printf ("%s\n", _("This plugin tests the STATUS of an HP printer with a JetDirect card.")); |
393 | printf ("%s\n", _("Net-snmp must be installed on the computer running the plugin.")); | 396 | printf ("%s\n", _("Net-snmp must be installed on the computer running the plugin.")); |
394 | 397 | ||
395 | printf ("\n\n"); | 398 | printf ("\n\n"); |
396 | 399 | ||
397 | print_usage (); | 400 | print_usage (); |
398 | 401 | ||
399 | printf (_(UT_HELP_VRSN)); | 402 | printf (_(UT_HELP_VRSN)); |
403 | printf (_(UT_EXTRA_OPTS)); | ||
400 | 404 | ||
401 | printf (" %s\n", "-C, --community=STRING"); | 405 | printf (" %s\n", "-C, --community=STRING"); |
402 | printf (" %s", _("The SNMP community name ")); | 406 | printf (" %s", _("The SNMP community name ")); |
403 | printf (_("(default=%s)"), DEFAULT_COMMUNITY); | 407 | printf (_("(default=%s)"), DEFAULT_COMMUNITY); |
408 | printf ("\n"); | ||
409 | |||
410 | #ifdef NP_EXTRA_OPTS | ||
411 | printf ("\n"); | ||
412 | printf ("%s\n", _("Notes:")); | ||
413 | printf (_(UT_EXTRA_OPTS_NOTES)); | ||
414 | #endif | ||
404 | 415 | ||
405 | printf ("\n"); | ||
406 | printf (_(UT_SUPPORT)); | 416 | printf (_(UT_SUPPORT)); |
407 | } | 417 | } |
408 | 418 | ||