From 5e3fc41c6143676cf01b7aad789fc5f2cae5ce84 Mon Sep 17 00:00:00 2001 From: Benoit Mortier Date: Fri, 3 Dec 2004 23:02:04 +0000 Subject: print_help and print_usage() cleanup other misc cleanups git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@996 f882894a-f735-0410-b71e-b25c423dba1c diff --git a/plugins/check_dig.c b/plugins/check_dig.c index 5bed80d..8f88316 100644 --- a/plugins/check_dig.c +++ b/plugins/check_dig.c @@ -20,7 +20,7 @@ const char *progname = "check_dig"; const char *revision = "$Revision$"; -const char *copyright = "2002-2003"; +const char *copyright = "2002-2004"; const char *email = "nagiosplug-devel@lists.sourceforge.net"; #include "common.h" @@ -221,7 +221,7 @@ process_arguments (int argc, char **argv) print_help (); exit (STATE_OK); case 'V': /* version */ - print_revision (progname, "$Revision$"); + print_revision (progname, revision); exit (STATE_OK); case 'H': /* hostname */ if (is_host (optarg)) { @@ -318,7 +318,7 @@ print_help (void) printf ("Copyright (c) 2000 Karl DeBisschop \n"); printf (COPYRIGHT, copyright, email); - printf (_("Test the DNS service on the specified host using dig\n")); + printf (_("Test the DNS service on the specified host using dig\n\n")); print_usage (); diff --git a/plugins/check_disk.c b/plugins/check_disk.c index 109420a..71a6807 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c @@ -21,7 +21,7 @@ const char *progname = "check_disk"; const char *program_name = "check_disk"; // Required for coreutils libs const char *revision = "$Revision$"; -const char *copyright = "1999-2003"; +const char *copyright = "1999-2004"; const char *email = "nagiosplug-devel@lists.sourceforge.net"; #include "common.h" @@ -578,7 +578,7 @@ print_help (void) printf (_("\ This plugin checks the amount of used disk space on a mounted file system\n\ -and generates an alert if free space is less than one of the threshold values.")); +and generates an alert if free space is less than one of the threshold values.\n\n")); print_usage (); @@ -638,5 +638,5 @@ print_usage (void) { printf ("\ Usage: %s -w limit -c limit [-p path | -x device] [-t timeout] [-m] [-e]\n\ - [-v] [-q]\n", progname); + [-v] [-q]\n", progname); } diff --git a/plugins/check_dns.c b/plugins/check_dns.c index 492fa17..2a8f459 100644 --- a/plugins/check_dns.c +++ b/plugins/check_dns.c @@ -395,6 +395,12 @@ print_help (void) printf ("Copyright (c) 1999 Ethan Galstad \n"); printf (COPYRIGHT, copyright, email); + printf (_("\ +This plugin uses the nslookup program to obtain the IP address\n\ +for the given host/domain query. A optional DNS server to use may\n\ +be specified. If no DNS server is specified, the default server(s)\n\ +specified in /etc/resolv.conf will be used.\n\n")); + print_usage (); printf (_(UT_HELP_VRSN)); @@ -411,12 +417,6 @@ print_help (void) printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT); - printf (_("\n\ -This plugin uses the nslookup program to obtain the IP address\n\ -for the given host/domain query. A optional DNS server to use may\n\ -be specified. If no DNS server is specified, the default server(s)\n\ -specified in /etc/resolv.conf will be used.\n")); - printf (_(UT_SUPPORT)); } diff --git a/plugins/check_dummy.c b/plugins/check_dummy.c index e0c38d3..2dbbaec 100644 --- a/plugins/check_dummy.c +++ b/plugins/check_dummy.c @@ -91,14 +91,14 @@ print_help (void) printf ("Copyright (c) 1999 Ethan Galstad \n"); printf (COPYRIGHT, copyright, email); + printf (_("\ +This plugin will simply return the state corresponding to the numeric value\n\ +of the argument with optional text.\n\n")); + print_usage (); printf (_(UT_HELP_VRSN)); - printf (_("\n\ -This plugin will simply return the state corresponding to the numeric value\n\ -of the argument with optional text.\n")); - printf (_(UT_SUPPORT)); } diff --git a/plugins/check_fping.c b/plugins/check_fping.c index 0b23f79..ce62a7c 100644 --- a/plugins/check_fping.c +++ b/plugins/check_fping.c @@ -356,15 +356,15 @@ void print_help (void) { - print_revision (progname, "$Revision$"); + print_revision (progname, revision); printf ("Copyright (c) 1999 Didi Rieder \n"); printf (COPYRIGHT, copyright, email); printf (_("\ -This plugin will use the /bin/fping command (from saint) to ping the\n\ -specified host for a fast check if the host is alive. Note that it is\n\ -necessary to set the suid flag on fping.\n\n")); +This plugin will use the /bin/fping command to ping the specified host\n\ +for a fast check if the host is alive.\n\ +Note that it is necessary to set the suid flag on fping.\n\n")); print_usage (); diff --git a/plugins/check_game.c b/plugins/check_game.c index 9b13d94..c0f9a47 100644 --- a/plugins/check_game.c +++ b/plugins/check_game.c @@ -302,7 +302,7 @@ print_help (void) printf ("Copyright (c) 1999 Ian Cass, Knowledge Matters Limited\n"); printf (_(COPYRIGHT), copyright, email); - printf (_("This plugin tests %s connections with the specified host."), progname); + printf (_("This plugin tests game server connections with the specified host."), progname); print_usage (); @@ -334,7 +334,7 @@ print_usage (void) { printf ("\ Usage: %s [-p port] [-gf game_field] [-mf map_field]\n\ - [-pf ping_field]\n", progname); + [-pf ping_field]\n", progname); } /****************************************************************************** diff --git a/plugins/check_hpjd.c b/plugins/check_hpjd.c index 816ce19..678d5c8 100644 --- a/plugins/check_hpjd.c +++ b/plugins/check_hpjd.c @@ -398,6 +398,5 @@ Net-snmp must be installed on the computer running the plugin.\n\n")); void print_usage (void) { - printf (_("\ -Usage: %s -H host [-C community]\n"), progname); + printf ("Usage: %s -H host [-C community]\n"), progname); } diff --git a/plugins/check_http.c b/plugins/check_http.c index f334026..3ff834b 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c @@ -21,7 +21,7 @@ const char *progname = "check_http"; const char *revision = "$Revision$"; -const char *copyright = "1999-2001"; +const char *copyright = "1999-2004"; const char *email = "nagiosplug-devel@lists.sourceforge.net"; #include "common.h" @@ -1376,7 +1376,7 @@ print_help (void) This plugin tests the HTTP service on the specified host. It can test\n\ normal (http) and secure (https) servers, follow redirects, search for\n\ strings and regular expressions, check connection times, and report on\n\ -certificate expiration times.\n")); +certificate expiration times.\n\n")); print_usage (); @@ -1492,9 +1492,9 @@ print_usage (void) { printf (_("\ Usage: %s -H | -I ) [-u ] [-p ]\n\ - [-w ] [-c ] [-t ] [-L]\n\ - [-a auth] [-f ] [-e ]\n\ - [-s string] [-l] [-r | -R ]\n\ - [-P string] [-m min_pg_size] [-4|-6] [-N] [-M ] [-A string]\n\ - [-k string]\n"), progname); + [-w ] [-c ] [-t ] [-L]\n\ + [-a auth] [-f ] [-e ]\n\ + [-s string] [-l] [-r | -R ]\n\ + [-P string] [-m min_pg_size] [-4|-6] [-N] [-M ]\n\ + [-A string] [-k string]\n"), progname); } diff --git a/plugins/check_ide-smart.c b/plugins/check_ide-smart.c index 9ebef6c..1c0af31 100644 --- a/plugins/check_ide-smart.c +++ b/plugins/check_ide-smart.c @@ -146,6 +146,125 @@ enum SmartCommand }; +int +main (int argc, char *argv[]) +{ + char *device = NULL; + int command = -1; + int o, longindex; + int retval = 0; + + thresholds_t thresholds; + values_t values; + int fd; + + static struct option longopts[] = { + {"device", required_argument, 0, 'd'}, + {"immediate", no_argument, 0, 'i'}, + {"quiet-check", no_argument, 0, 'q'}, + {"auto-on", no_argument, 0, '1'}, + {"auto-off", no_argument, 0, '0'}, + {"net-saint", no_argument, 0, 'n'}, + {"help", no_argument, 0, 'h'}, + {"version", no_argument, 0, 'V'}, {0, 0, 0, 0} + }; + + setlocale (LC_ALL, ""); + bindtextdomain (PACKAGE, LOCALEDIR); + textdomain (PACKAGE); + + while (1) { + + o = getopt_long (argc, argv, "+d:iq10nhV", longopts, &longindex); + + if (o == -1 || o == EOF) + break; + + switch (o) { + case 'd': + device = optarg; + break; + case 'q': + command = 3; + break; + case 'i': + command = 2; + break; + case '1': + command = 1; + break; + case '0': + command = 0; + break; + case 'n': + command = 4; + break; + case 'h': + print_help (); + return STATE_OK; + case 'V': + print_revision (progname, revision); + return STATE_OK; + default: + printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); + print_usage (); + exit (STATE_UNKNOWN); + } + + if (optind < argc) { + device = argv[optind]; + } + + if (!device) { + show_help (); + show_version (); + return -1; + } + + fd = open (device, O_RDONLY); + + if (fd < 0) { + printf (_("CRITICAL - Couldn't open device: %s\n"), strerror (errno)); + return 2; + } + + if (smart_cmd_simple (fd, SMART_CMD_ENABLE, 0, TRUE)) { + printf (_("CRITICAL - SMART_CMD_ENABLE\n")); + return 2; + } + + switch (command) { + case 0: + retval = smart_cmd_simple (fd, SMART_CMD_AUTO_OFFLINE, 0, TRUE); + break; + case 1: + retval = smart_cmd_simple (fd, SMART_CMD_AUTO_OFFLINE, 0xF8, TRUE); + break; + case 2: + retval = smart_cmd_simple (fd, SMART_CMD_IMMEDIATE_OFFLINE, 0, TRUE); + break; + case 3: + smart_read_values (fd, &values); + smart_read_thresholds (fd, &thresholds); + retval = values_not_passed (&values, &thresholds); + break; + case 4: + smart_read_values (fd, &values); + smart_read_thresholds (fd, &thresholds); + retval = net_saint (&values, &thresholds); + break; + default: + smart_read_values (fd, &values); + smart_read_thresholds (fd, &thresholds); + print_values (&values, &thresholds); + break; + } + close (fd); + } + return retval; +} + + char * get_offline_text (int status) @@ -371,19 +490,14 @@ smart_read_thresholds (int fd, thresholds_t * thresholds) void -show_version () +print_help () { - printf ("check_ide-smart v.1 - FREE Software with NO WARRANTY\n"); - printf ("Nagios feature - Robert Dale \n"); + print_revision (progname, revision); + + printf ("Nagios feature - 1999 Robert Dale \n"); printf ("(C) 1999 Ragnar Hojland Espinosa \n"); printf (COPYRIGHT, copyright, email); -} - - - -void -show_help () -{ + printf (_("\ Usage: %s [DEVICE] [OPTION]\n\ -d, --device=DEVICE\n\ @@ -402,120 +516,8 @@ Usage: %s [DEVICE] [OPTION]\n\ -int -main (int argc, char *argv[]) +void +print_usage (void) { - char *device = NULL; - int command = -1; - int o, longindex; - int retval = 0; - - thresholds_t thresholds; - values_t values; - int fd; - - static struct option longopts[] = { - {"device", required_argument, 0, 'd'}, - {"immediate", no_argument, 0, 'i'}, - {"quiet-check", no_argument, 0, 'q'}, - {"auto-on", no_argument, 0, '1'}, - {"auto-off", no_argument, 0, '0'}, - {"net-saint", no_argument, 0, 'n'}, - {"help", no_argument, 0, 'h'}, - {"version", no_argument, 0, 'V'}, {0, 0, 0, 0} - }; - - setlocale (LC_ALL, ""); - bindtextdomain (PACKAGE, LOCALEDIR); - textdomain (PACKAGE); - - while (1) { - - o = getopt_long (argc, argv, "+d:iq10nhV", longopts, &longindex); - - if (o == -1 || o == EOF) - break; - - switch (o) { - case 'd': - device = optarg; - break; - case 'q': - command = 3; - break; - case 'i': - command = 2; - break; - case '1': - command = 1; - break; - case '0': - command = 0; - break; - case 'n': - command = 4; - break; - case 'h': - show_help (); - return 0; - case 'V': - show_version (); - return 0; - default: - printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); - print_usage (); - exit (STATE_UNKNOWN); - } - - if (optind < argc) { - device = argv[optind]; - } - - if (!device) { - show_help (); - show_version (); - return -1; - } - - fd = open (device, O_RDONLY); - - if (fd < 0) { - printf (_("CRITICAL - Couldn't open device: %s\n"), strerror (errno)); - return 2; - } - - if (smart_cmd_simple (fd, SMART_CMD_ENABLE, 0, TRUE)) { - printf (_("CRITICAL - SMART_CMD_ENABLE\n")); - return 2; - } - - switch (command) { - case 0: - retval = smart_cmd_simple (fd, SMART_CMD_AUTO_OFFLINE, 0, TRUE); - break; - case 1: - retval = smart_cmd_simple (fd, SMART_CMD_AUTO_OFFLINE, 0xF8, TRUE); - break; - case 2: - retval = smart_cmd_simple (fd, SMART_CMD_IMMEDIATE_OFFLINE, 0, TRUE); - break; - case 3: - smart_read_values (fd, &values); - smart_read_thresholds (fd, &thresholds); - retval = values_not_passed (&values, &thresholds); - break; - case 4: - smart_read_values (fd, &values); - smart_read_thresholds (fd, &thresholds); - retval = net_saint (&values, &thresholds); - break; - default: - smart_read_values (fd, &values); - smart_read_thresholds (fd, &thresholds); - print_values (&values, &thresholds); - break; - } - close (fd); - } - return retval; + printf ("Usage: %s \n"), progname); } diff --git a/plugins/check_ldap.c b/plugins/check_ldap.c index 9664c0f..dfdd837 100644 --- a/plugins/check_ldap.c +++ b/plugins/check_ldap.c @@ -277,8 +277,6 @@ validate_arguments () - - void print_help (void) { @@ -334,7 +332,8 @@ print_usage (void) { printf ("\ Usage: %s -H -b [-p ] [-a ] [-D ]\n\ - [-P ] [-w ] [-c ] [-t timeout]%s\n", + [-P ] [-w ] [-c ]\n\ + [-t timeout]%s\n", //(Note: all times are in seconds.)\n", progname, #ifdef HAVE_LDAP_SET_OPTION diff --git a/plugins/check_mrtg.c b/plugins/check_mrtg.c index 5dfee72..cf3cc85 100644 --- a/plugins/check_mrtg.c +++ b/plugins/check_mrtg.c @@ -316,7 +316,7 @@ print_help (void) printf(_("\ This plugin will check either the average or maximum value of one of the\n\ -two variables recorded in an MRTG log file.\n")); +two variables recorded in an MRTG log file.\n\n")); print_usage (); @@ -377,5 +377,6 @@ print_usage (void) { printf ("\ Usage: %s -F log_file -a -v variable -w warning -c critical\n\ - [-l label] [-u units] [-e expire_minutes] [-t timeout] [-v]\n", progname); + [-l label] [-u units] [-e expire_minutes] [-t timeout]\n\ + [-v]\n", progname); } diff --git a/plugins/check_mrtgtraf.c b/plugins/check_mrtgtraf.c index 9b408a4..0f7afbc 100644 --- a/plugins/check_mrtgtraf.c +++ b/plugins/check_mrtgtraf.c @@ -321,6 +321,14 @@ print_help (void) printf ("Copyright (c) 1999 Ethan Galstad \n"); printf (COPYRIGHT, copyright, email); + printf (_("\n\ +This plugin will check the incoming/outgoing transfer rates of a router,\n\ +switch, etc recorded in an MRTG log. If the newest log entry is older\n\ +than , a WARNING status is returned. If either the\n\ +incoming or outgoing rates exceed the or thresholds (in\n\ +Bytes/sec), a CRITICAL status results. If either of the rates exceed\n\ +the or thresholds (in Bytes/sec), a WARNING status results.\n\n")); + print_usage (); printf (_(UT_HELP_VRSN)); @@ -337,14 +345,6 @@ print_help (void) -c, --critical\n\ Critical threshold pair \",\"\n")); - printf (_("\n\ -This plugin will check the incoming/outgoing transfer rates of a router,\n\ -switch, etc recorded in an MRTG log. If the newest log entry is older\n\ -than , a WARNING status is returned. If either the\n\ -incoming or outgoing rates exceed the or thresholds (in\n\ -Bytes/sec), a CRITICAL status results. If either of the rates exceed\n\ -the or thresholds (in Bytes/sec), a WARNING status results.\n\n")); - printf (_("Notes:\n\ - MRTG stands for Multi Router Traffic Grapher. It can be downloaded from\n\ http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/mrtg.html\n\ @@ -363,6 +363,6 @@ void print_usage (void) { printf ("\ -Usage: %s -F -a -v -w -c \n\ - [-e expire_minutes] [-t timeout] [-v]\n", progname); +Usage: %s -F -a -v -w \n\ + -c [-e expire_minutes] [-t timeout] [-v]\n", progname); } diff --git a/plugins/check_nagios.c b/plugins/check_nagios.c index 8a10c4a..29abc2a 100644 --- a/plugins/check_nagios.c +++ b/plugins/check_nagios.c @@ -276,7 +276,7 @@ This plugin attempts to check 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")); +by the argument.\n\n")); print_usage (); diff --git a/plugins/check_nt.c b/plugins/check_nt.c index 67c3017..4826d68 100644 --- a/plugins/check_nt.c +++ b/plugins/check_nt.c @@ -608,11 +608,15 @@ void preparelist(char *string) { void print_help(void) { print_revision(progname,revision); - printf (_("\ -Copyright (c) 2000 Yves Rubin (rubiyz@yahoo.com)\n\n\ -This plugin collects data from the NSClient service running on a\n\ -Windows NT/2000/XP server.\n\n")); + + printf (_("Copyright (c) 2000 Yves Rubin (rubiyz@yahoo.com)\n")); + printf (COPYRIGHT, copyright, email); + + printf (_("This plugin collects data from the NSClient service running on a\n\ +Windows NT/2000/XP/2003 server.\n\n")); + print_usage(); + printf (_("\nOptions:\n\ -H, --hostname=HOST\n\ Name of the host to check\n\ @@ -629,8 +633,8 @@ Windows NT/2000/XP server.\n\n")); -h, --help\n\ Print this help screen\n\ -V, --version\n\ - Print version information\n"), - PORT, DEFAULT_SOCKET_TIMEOUT); + Print version information\n"), PORT, DEFAULT_SOCKET_TIMEOUT); + printf (_("\ -v, --variable=STRING\n\ Variable to check. Valid variables are:\n")); @@ -684,5 +688,5 @@ void print_usage(void) { printf("\ Usage: %s -H host -v variable [-p port] [-w warning] [-c critical]\n\ - [-l params] [-d SHOWALL] [-t timeout]\n", progname); + [-l params] [-d SHOWALL] [-t timeout]\n", progname); } diff --git a/plugins/check_nwstat.c b/plugins/check_nwstat.c index b791640..4dffba3 100644 --- a/plugins/check_nwstat.c +++ b/plugins/check_nwstat.c @@ -908,8 +908,8 @@ void print_help(void) printf (COPYRIGHT, copyright, email); printf (_("\ -Usage: %s This plugin attempts to contact the MRTGEXT NLM running\n\ -on a Novell server to gather the requested system information.\n\n"), +This plugin attempts to contact the MRTGEXT NLM running on a\n\ +Novell server to gather the requested system information.\n\n"), progname); print_usage(); @@ -989,5 +989,5 @@ void print_usage(void) { printf ("\ Usage: %s -H host [-p port] [-v variable] [-w warning] [-c critical]\n\ - [-t timeout].\n", progname); + [-t timeout].\n", progname); } diff --git a/plugins/check_overcr.c b/plugins/check_overcr.c index 2ebf62e..8fb1ef4 100644 --- a/plugins/check_overcr.c +++ b/plugins/check_overcr.c @@ -465,5 +465,5 @@ print_usage (void) { printf ("\ Usage: %s -H host [-p port] [-v variable] [-w warning] [-c critical]\n\ - [-t timeout]\n", progname); + [-t timeout]\n", progname); } diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index 53f9e96..a002571 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c @@ -391,7 +391,7 @@ print_help (void) print_revision (progname, revision); - printf (_(COPYRIGHT), copyright, email); + printf (COPYRIGHT, copyright, email); printf (_("Test whether a PostgreSQL Database is accepting connections.\n\n")); @@ -443,5 +443,5 @@ print_usage (void) { printf ("\ Usage: %s [-H ] [-P ] [-c ] [-w ]\n\ - [-t ] [-d ] [-l ] [-p ]\n", progname); + [-t ] [-d ] [-l ] [-p ]\n", progname); } diff --git a/plugins/check_procs.c b/plugins/check_procs.c index 7770dda..5742b72 100644 --- a/plugins/check_procs.c +++ b/plugins/check_procs.c @@ -751,6 +751,6 @@ print_usage (void) { printf ("\ Usage: %s -w -c [-m metric] [-s state] [-p ppid]\n\ - [-u user] [-r rss] [-z vsz] [-P %%cpu] [-a argument-array]\n\ - [-C command] [-t timeout] [-v]\n", progname); + [-u user] [-r rss] [-z vsz] [-P %%cpu] [-a argument-array]\n\ + [-C command] [-t timeout] [-v]\n", progname); } diff --git a/plugins/check_radius.c b/plugins/check_radius.c index 90653a2..bdb9b7a 100644 --- a/plugins/check_radius.c +++ b/plugins/check_radius.c @@ -26,6 +26,7 @@ const char *email = "nagiosplug-devel@lists.sourceforge.net"; #include "common.h" #include "utils.h" #include "netutils.h" + #include int process_arguments (int, char **); @@ -335,5 +336,5 @@ print_usage (void) { printf ("\ Usage: %s -H host -F config_file -u username -p password [-n nas-id] [-P port]\n\ - [-t timeout] [-r retries] [-e expect]\n", progname); + [-t timeout] [-r retries] [-e expect]\n", progname); } diff --git a/plugins/check_real.c b/plugins/check_real.c index 9fad2a8..f843172 100644 --- a/plugins/check_real.c +++ b/plugins/check_real.c @@ -438,5 +438,5 @@ print_usage (void) { printf ("\ Usage: %s -H host [-e expect] [-p port] [-w warn] [-c crit]\n\ - [-t timeout] [-v]\n", progname); + [-t timeout] [-v]\n", progname); } diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c index ac20853..d834642 100644 --- a/plugins/check_smtp.c +++ b/plugins/check_smtp.c @@ -422,8 +422,7 @@ print_help (void) printf ("Copyright (c) 1999-2001 Ethan Galstad \n"); printf (COPYRIGHT, copyright, email); - printf(_("\ -This plugin will attempt to open an SMTP connection with the host.\n\n")); + printf(_("This plugin will attempt to open an SMTP connection with the host.\n\n")); print_usage (); @@ -468,5 +467,5 @@ print_usage (void) { printf ("\ Usage: %s -H host [-p port] [-e expect] [-C command] [-f from addr]\n\ - [-w warn] [-c crit] [-t timeout] [-n] [-v] [-4|-6]\n", progname); + [-w warn] [-c crit] [-t timeout] [-n] [-v] [-4|-6]\n", progname); } diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index fa4f56c..18b7f2f 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c @@ -842,7 +842,7 @@ print_help (void) { print_revision (progname, revision); - printf (_(COPYRIGHT), copyright, email); + printf (COPYRIGHT, copyright, email); printf (_("\ Check status of remote machines and obtain sustem information via SNMP\n\n")); @@ -950,9 +950,9 @@ print_usage (void) { printf ("\ Usage: %s -H -o [-w warn_range] [-c crit_range] \n\ - [-C community] [-s string] [-r regex] [-R regexi] [-t timeout]\n\ - [-l label] [-u units] [-p port-number] [-d delimiter]\n\ - [-D output-delimiter] [-m miblist] [-P snmp version]\n\ - [-L seclevel] [-U secname] [-a authproto] [-A authpasswd]\n\ - [-X privpasswd]\n", progname); + [-C community] [-s string] [-r regex] [-R regexi] [-t timeout]\n\ + [-l label] [-u units] [-p port-number] [-d delimiter]\n\ + [-D output-delimiter] [-m miblist] [-P snmp version]\n\ + [-L seclevel] [-U secname] [-a authproto] [-A authpasswd]\n\ + [-X privpasswd]\n", progname); } diff --git a/plugins/check_swap.c b/plugins/check_swap.c index 3a3ec35..2e5f5c7 100644 --- a/plugins/check_swap.c +++ b/plugins/check_swap.c @@ -479,7 +479,7 @@ print_help (void) printf (_(COPYRIGHT), copyright, email); - printf (_("Check swap space on local server.\n\n")); + printf (_("Check swap space on local machine.\n\n")); print_usage (); @@ -514,7 +514,7 @@ On AIX, if -a is specified, uses lsps -a, otherwise uses lsps -s.\n")); void print_usage (void) { - printf ("Usage:\n\ - %s [-av] -w %% -c %%\n\ - %s [-av] -w -c \n", progname, progname); + printf ("\ + Usage: %s [-av] -w %% -c %%\n\ + %s [-av] -w -c \n", progname, progname); } diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c index b2066c7..93ba344 100644 --- a/plugins/check_tcp.c +++ b/plugins/check_tcp.c @@ -739,8 +739,8 @@ print_help (void) { print_revision (progname, revision); - printf (_("Copyright (c) 1999 Ethan Galstad \n")); - printf (_(COPYRIGHT), copyright, email); + printf ("Copyright (c) 1999 Ethan Galstad \n")); + printf (COPYRIGHT, copyright, email); printf (_("This plugin tests %s connections with the specified host.\n\n"), SERVICE); @@ -795,8 +795,8 @@ print_usage (void) { printf ("\ Usage: %s -H host -p port [-w ] [-c ]\n\ - [-s ] [-e ] [-q ]\n\ - [-m ] [-d ] [-t ]\n\ - [-r ] [-v] [-4|-6] [-j] [-D ]\n\ - [-S ]\n", progname); + [-s ] [-e ] [-q ]\n\ + [-m ] [-d ] [-t ]\n\ + [-r ] [-v] [-4|-6] [-j] [-D ]\n\ + [-S ]\n", progname); } diff --git a/plugins/check_time.c b/plugins/check_time.c index 5d07f54..b2e5374 100644 --- a/plugins/check_time.c +++ b/plugins/check_time.c @@ -326,8 +326,7 @@ print_help (void) printf ("Copyright (c) 1999 Ethan Galstad\n"); printf (COPYRIGHT, copyright, email); - printf (_("\ -This plugin will check the time on the specified host.\n\n")); + printf (_("This plugin will check the time on the specified host.\n\n")); print_usage (); @@ -359,5 +358,5 @@ print_usage (void) { printf ("\ Usage: %s -H [-p port] [-u] [-w variance] [-c variance]\n\ - [-W connect_time] [-C connect_time] [-t timeout]\n", progname); + [-W connect_time] [-C connect_time] [-t timeout]\n", progname); } diff --git a/plugins/check_udp.c b/plugins/check_udp.c index ea91f41..e446b93 100644 --- a/plugins/check_udp.c +++ b/plugins/check_udp.c @@ -264,5 +264,5 @@ print_usage (void) { printf ("\ Usage: %s -H [-p port] [-w warn_time] [-c crit_time]\n\ - [-e expect] [-s send] [-t to_sec] [-v]\n", progname); + [-e expect] [-s send] [-t to_sec] [-v]\n", progname); } diff --git a/plugins/check_ups.c b/plugins/check_ups.c index 23fb8d2..8383b09 100644 --- a/plugins/check_ups.c +++ b/plugins/check_ups.c @@ -592,7 +592,6 @@ print_help (void) printf ("Copyright (c) 2000 Tom Shields"); printf ("Copyright (c) 2004 Alain Richard \n"); printf ("Copyright (c) 2004 Arnaud Quette \n"); - printf (COPYRIGHT, copyright, email); printf (_("This plugin tests the UPS service on the specified host.\n\ @@ -648,5 +647,5 @@ print_usage (void) { printf ("\ Usage: %s -H host -u ups [-p port] [-v variable]\n\ - [-wv warn_value] [-cv crit_value] [-to to_sec] [-T]\n", progname); + [-wv warn_value] [-cv crit_value] [-to to_sec] [-T]\n", progname); } -- cgit v0.10-9-g596f