diff options
Diffstat (limited to 'plugins/check_ups.c')
-rw-r--r-- | plugins/check_ups.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/plugins/check_ups.c b/plugins/check_ups.c index 666485e..773da5f 100644 --- a/plugins/check_ups.c +++ b/plugins/check_ups.c | |||
@@ -119,6 +119,9 @@ main (int argc, char **argv) | |||
119 | data = strdup (""); | 119 | data = strdup (""); |
120 | message = strdup (""); | 120 | message = strdup (""); |
121 | 121 | ||
122 | /* Parse extra opts if any */ | ||
123 | argv=np_extra_opts (&argc, argv, progname); | ||
124 | |||
122 | if (process_arguments (argc, argv) == ERROR) | 125 | if (process_arguments (argc, argv) == ERROR) |
123 | usage4 (_("Could not parse arguments")); | 126 | usage4 (_("Could not parse arguments")); |
124 | 127 | ||
@@ -609,6 +612,7 @@ print_help (void) | |||
609 | print_usage (); | 612 | print_usage (); |
610 | 613 | ||
611 | printf (_(UT_HELP_VRSN)); | 614 | printf (_(UT_HELP_VRSN)); |
615 | printf (_(UT_EXTRA_OPTS)); | ||
612 | 616 | ||
613 | printf (_(UT_HOST_PORT), 'p', myport); | 617 | printf (_(UT_HOST_PORT), 'p', myport); |
614 | 618 | ||
@@ -640,12 +644,15 @@ print_help (void) | |||
640 | printf (" %s\n", _("battery load, etc.) as well as warning and critical thresholds for the value")); | 644 | printf (" %s\n", _("battery load, etc.) as well as warning and critical thresholds for the value")); |
641 | printf (" %s\n", _("of that variable. If the remote host has multiple UPS that are being monitored")); | 645 | printf (" %s\n", _("of that variable. If the remote host has multiple UPS that are being monitored")); |
642 | printf (" %s\n", _("you will have to use the --ups option to specify which UPS to check.")); | 646 | printf (" %s\n", _("you will have to use the --ups option to specify which UPS to check.")); |
643 | |||
644 | printf ("\n"); | 647 | printf ("\n"); |
645 | printf (" %s\n", _("This plugin requires that the UPSD daemon distributed with Russel Kroll's")); | 648 | printf (" %s\n", _("This plugin requires that the UPSD daemon distributed with Russel Kroll's")); |
646 | printf (" %s\n", _("Smart UPS Tools be installed on the remote host. If you do not have the")); | 649 | printf (" %s\n", _("Smart UPS Tools be installed on the remote host. If you do not have the")); |
647 | printf (" %s\n", _("package installed on your system, you can download it from")); | 650 | printf (" %s\n", _("package installed on your system, you can download it from")); |
648 | printf (" %s\n", _("http://www.networkupstools.org")); | 651 | printf (" %s\n", _("http://www.networkupstools.org")); |
652 | #ifdef NP_EXTRA_OPTS | ||
653 | printf ("\n"); | ||
654 | printf (_(UT_EXTRA_OPTS_NOTES)); | ||
655 | #endif | ||
649 | 656 | ||
650 | printf (_(UT_SUPPORT)); | 657 | printf (_(UT_SUPPORT)); |
651 | } | 658 | } |