X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fcheck_nagios.c;h=0176983c5866f900a20587416cfe3aa9b4bab70e;hb=6ecaa524bf28b5fb861b161ea075a11119cb3bd2;hp=b567fe10c8e83f91ae26c50ed9ae717754e55dc3;hpb=30a4266a3a624abbbaace89141f1369ecb5367aa;p=nagiosplug.git diff --git a/plugins/check_nagios.c b/plugins/check_nagios.c index b567fe1..0176983 100644 --- a/plugins/check_nagios.c +++ b/plugins/check_nagios.c @@ -95,7 +95,7 @@ main (int argc, char **argv) fclose (fp); if (verbose >= 2) - printf("command: %s\n", PS_COMMAND); + printf(_("command: %s\n"), PS_COMMAND); /* run the command to check for the Nagios process.. */ child_process = spopen (PS_COMMAND); @@ -134,7 +134,7 @@ main (int argc, char **argv) } /* May get empty procargs */ - if (!strstr(procargs, argv[0]) && strstr(procprog, process_string) && strcmp(procargs,"")) { + if (!strstr(procargs, argv[0]) && strstr(procargs, process_string) && strcmp(procargs,"")) { proc_entries++; if (verbose >= 2) { printf (_("Found process: %s %s\n"), procprog, procargs); @@ -206,8 +206,7 @@ process_arguments (int argc, char **argv) expire_minutes = atoi (argv[2]); else die (STATE_UNKNOWN, - _("Expiration time must be an integer (seconds)\nType '%s -h' for additional help\n"), - progname); + _("Expiration time must be an integer (seconds)\n")); process_string = argv[3]; return OK; } @@ -220,9 +219,7 @@ process_arguments (int argc, char **argv) switch (c) { case '?': /* print short usage statement if args not parsable */ - printf (_("%s: Unknown argument: %c\n\n"), progname, optopt); - print_usage (); - exit (STATE_UNKNOWN); + usage2 (_("Unknown argument"), optarg); case 'h': /* help */ print_help (); exit (STATE_OK); @@ -240,8 +237,7 @@ process_arguments (int argc, char **argv) expire_minutes = atoi (optarg); else die (STATE_UNKNOWN, - _("Expiration time must be an integer (seconds)\nType '%s -h' for additional help\n"), - progname); + _("Expiration time must be an integer (seconds)\n")); break; case 'v': verbose++; @@ -252,12 +248,10 @@ process_arguments (int argc, char **argv) if (status_log == NULL) die (STATE_UNKNOWN, - _("You must provide the status_log\nType '%s -h' for additional help\n"), - progname); + _("You must provide the status_log\n")); else if (process_string == NULL) die (STATE_UNKNOWN, - _("You must provide a process string\nType '%s -h' for additional help\n"), - progname); + _("You must provide a process string\n")); return OK; } @@ -272,29 +266,26 @@ print_help (void) printf (_(COPYRIGHT), copyright, email); printf (_("\ -This plugin attempts to check the status of the Nagios process on the local\n\ +This plugin checks the status of the Nagios process on the local\n\ machine. The plugin will check to make sure the Nagios status log is no older\n\ -than the number of minutes specified by the option. It also\n\ -uses the /bin/ps command to check for a process matching whatever you specify\n\ -by the argument.\n\n")); +than the number of minutes specified by the expires option. It also\n\ +checks the process table for a process matching the command argument.\n\n")); print_usage (); printf (_(UT_HELP_VRSN)); printf (_("\ --F, --filename=FILE\n\ + -F, --filename=FILE\n\ Name of the log file to check\n\ --e, --expires=INTEGER\n\ - Seconds aging afterwhich logfile is condsidered stale\n\ --C, --command=STRING\n\ - Command to search for in process table\n")); + -e, --expires=INTEGER\n\ + Minutes aging after which logfile is considered stale\n\ + -C, --command=STRING\n\ + Substring to search for in process arguments\n")); printf (_("\ Example:\n\ - ./check_nagios -e 5 \\\ - -F /usr/local/nagios/var/status.log \\\ - -C /usr/local/nagios/bin/nagios\n")); + ./check_nagios -e 5 -F /usr/local/nagios/var/status.log -C /usr/local/nagios/bin/nagios\n")); }