diff options
Diffstat (limited to 'plugins/check_ide_smart.c')
-rw-r--r-- | plugins/check_ide_smart.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/check_ide_smart.c b/plugins/check_ide_smart.c index 937f84c..02f07c0 100644 --- a/plugins/check_ide_smart.c +++ b/plugins/check_ide_smart.c | |||
@@ -162,6 +162,9 @@ main (int argc, char *argv[]) | |||
162 | values_t values; | 162 | values_t values; |
163 | int fd; | 163 | int fd; |
164 | 164 | ||
165 | /* Parse extra opts if any */ | ||
166 | argv=np_extra_opts (&argc, argv, progname); | ||
167 | |||
165 | static struct option longopts[] = { | 168 | static struct option longopts[] = { |
166 | {"device", required_argument, 0, 'd'}, | 169 | {"device", required_argument, 0, 'd'}, |
167 | {"immediate", no_argument, 0, 'i'}, | 170 | {"immediate", no_argument, 0, 'i'}, |
@@ -490,6 +493,7 @@ print_help (void) | |||
490 | print_usage (); | 493 | print_usage (); |
491 | 494 | ||
492 | printf (_(UT_HELP_VRSN)); | 495 | printf (_(UT_HELP_VRSN)); |
496 | printf (_(UT_EXTRA_OPTS)); | ||
493 | 497 | ||
494 | printf (" %s\n", "-d, --device=DEVICE"); | 498 | printf (" %s\n", "-d, --device=DEVICE"); |
495 | printf (" %s\n", _("Select device DEVICE")); | 499 | printf (" %s\n", _("Select device DEVICE")); |
@@ -504,6 +508,13 @@ print_help (void) | |||
504 | printf (" %s\n", _("Turn off automatic offline tests")); | 508 | printf (" %s\n", _("Turn off automatic offline tests")); |
505 | printf (" %s\n", "-n, --nagios"); | 509 | printf (" %s\n", "-n, --nagios"); |
506 | printf (" %s\n", _("Output suitable for Nagios")); | 510 | printf (" %s\n", _("Output suitable for Nagios")); |
511 | |||
512 | #ifdef NP_EXTRA_OPTS | ||
513 | printf ("\n"); | ||
514 | printf ("%s\n", _("Notes:")); | ||
515 | printf (_(UT_EXTRA_OPTS_NOTES)); | ||
516 | #endif | ||
517 | |||
507 | printf (_(UT_SUPPORT)); | 518 | printf (_(UT_SUPPORT)); |
508 | } | 519 | } |
509 | 520 | ||