summaryrefslogtreecommitdiffstats
path: root/plugins/check_ntp.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_ntp.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_ntp.c')
-rw-r--r--plugins/check_ntp.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/check_ntp.c b/plugins/check_ntp.c
index 69c25f0..68c82d1 100644
--- a/plugins/check_ntp.c
+++ b/plugins/check_ntp.c
@@ -763,6 +763,9 @@ int main(int argc, char *argv[]){
763 763
764 result = offset_result = jitter_result = STATE_OK; 764 result = offset_result = jitter_result = STATE_OK;
765 765
766 /* Parse extra opts if any */
767 argv=np_extra_opts (&argc, argv, progname);
768
766 if (process_arguments (argc, argv) == ERROR) 769 if (process_arguments (argc, argv) == ERROR)
767 usage4 (_("Could not parse arguments")); 770 usage4 (_("Could not parse arguments"));
768 771
@@ -844,6 +847,7 @@ void print_help(void){
844 847
845 print_usage(); 848 print_usage();
846 printf (_(UT_HELP_VRSN)); 849 printf (_(UT_HELP_VRSN));
850 printf (_(UT_EXTRA_OPTS));
847 printf (_(UT_HOST_PORT), 'p', "123"); 851 printf (_(UT_HOST_PORT), 'p', "123");
848 printf (" %s\n", "-w, --warning=THRESHOLD"); 852 printf (" %s\n", "-w, --warning=THRESHOLD");
849 printf (" %s\n", _("Offset to result in warning status (seconds)")); 853 printf (" %s\n", _("Offset to result in warning status (seconds)"));
@@ -859,11 +863,16 @@ void print_help(void){
859 printf("\n"); 863 printf("\n");
860 printf("%s\n", _("Notes:")); 864 printf("%s\n", _("Notes:"));
861 printf(_(UT_THRESHOLDS_NOTES)); 865 printf(_(UT_THRESHOLDS_NOTES));
866#ifdef NP_EXTRA_OPTS
867 printf("\n");
868 printf(_(UT_EXTRA_OPTS_NOTES));
869#endif
862 870
863 printf("\n"); 871 printf("\n");
864 printf("%s\n", _("Examples:")); 872 printf("%s\n", _("Examples:"));
865 printf(" %s\n", _("Normal offset check:")); 873 printf(" %s\n", _("Normal offset check:"));
866 printf(" %s\n", ("./check_ntp -H ntpserv -w 0.5 -c 1")); 874 printf(" %s\n", ("./check_ntp -H ntpserv -w 0.5 -c 1"));
875 printf("\n");
867 printf(" %s\n", _("Check jitter too, avoiding critical notifications if jitter isn't available")); 876 printf(" %s\n", _("Check jitter too, avoiding critical notifications if jitter isn't available"));
868 printf(" %s\n", _("(See Notes above for more details on thresholds formats):")); 877 printf(" %s\n", _("(See Notes above for more details on thresholds formats):"));
869 printf(" %s\n", ("./check_ntp -H ntpserv -w 0.5 -c 1 -j -1:100 -k -1:200")); 878 printf(" %s\n", ("./check_ntp -H ntpserv -w 0.5 -c 1 -j -1:100 -k -1:200"));