diff options
Diffstat (limited to 'plugins/check_pgsql.c')
-rw-r--r-- | plugins/check_pgsql.c | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index 8cfc1ab..f258708 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c | |||
@@ -20,7 +20,7 @@ | |||
20 | 20 | ||
21 | const char *progname = "check_pgsql"; | 21 | const char *progname = "check_pgsql"; |
22 | const char *revision = "$Revision$"; | 22 | const char *revision = "$Revision$"; |
23 | const char *copyright = "1999-2004"; | 23 | const char *copyright = "1999-2006"; |
24 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; | 24 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; |
25 | 25 | ||
26 | #include "common.h" | 26 | #include "common.h" |
@@ -391,7 +391,9 @@ print_help (void) | |||
391 | 391 | ||
392 | printf (COPYRIGHT, copyright, email); | 392 | printf (COPYRIGHT, copyright, email); |
393 | 393 | ||
394 | printf (_("Test whether a PostgreSQL Database is accepting connections.\n\n")); | 394 | printf (_("Test whether a PostgreSQL Database is accepting connections.")); |
395 | |||
396 | printf ("\n\n"); | ||
395 | 397 | ||
396 | print_usage (); | 398 | print_usage (); |
397 | 399 | ||
@@ -401,13 +403,13 @@ print_help (void) | |||
401 | 403 | ||
402 | printf (_(UT_IPv46)); | 404 | printf (_(UT_IPv46)); |
403 | 405 | ||
404 | printf (_("\ | 406 | printf (" %s\n", "-d, --database=STRING"); |
405 | -d, --database=STRING\n\ | 407 | printf (" %s", _("Database to check ")); |
406 | Database to check (default: %s)\n\ | 408 | printf (_("(default: %s)"), DEFAULT_DB); |
407 | -l, --logname = STRING\n\ | 409 | printf (" %s\n", "-l, --logname = STRING"); |
408 | Login name of user\n\ | 410 | printf (" %s\n", _("Login name of user")); |
409 | -p, --password = STRING\n\ | 411 | printf (" %s\n", "-p, --password = STRING"); |
410 | Password (BIG SECURITY ISSUE)\n"), DEFAULT_DB); | 412 | printf (" %s\n", _("Password (BIG SECURITY ISSUE)")); |
411 | 413 | ||
412 | printf (_(UT_WARN_CRIT)); | 414 | printf (_(UT_WARN_CRIT)); |
413 | 415 | ||
@@ -415,21 +417,19 @@ print_help (void) | |||
415 | 417 | ||
416 | printf (_(UT_VERBOSE)); | 418 | printf (_(UT_VERBOSE)); |
417 | 419 | ||
418 | printf (_("\nAll parameters are optional.\n\ | 420 | printf ("\n"); |
419 | \n\ | 421 | printf (" %s\n", _("All parameters are optional.")); |
420 | This plugin tests a PostgreSQL DBMS to determine whether it is active and\n\ | 422 | printf (" %s\n", _("This plugin tests a PostgreSQL DBMS to determine whether it is active and")); |
421 | accepting queries. In its current operation, it simply connects to the\n\ | 423 | printf (" %s\n", _("accepting queries. In its current operation, it simply connects to the")); |
422 | specified database, and then disconnects. If no database is specified, it\n\ | 424 | printf (" %s\n", _("specified database, and then disconnects. If no database is specified, it")); |
423 | connects to the template1 database, which is present in every functioning \n\ | 425 | printf (" %s\n", _("connects to the template1 database, which is present in every functioning")); |
424 | PostgreSQL DBMS.\n")); | 426 | printf (" %s\n\n", _("PostgreSQL DBMS.")); |
425 | printf (_("\n\ | 427 | printf (" %s\n", _("The plugin will connect to a local postmaster if no host is specified. To")); |
426 | The plugin will connect to a local postmaster if no host is specified. To\n\ | 428 | printf (" %s\n", _("connect to a remote host, be sure that the remote postmaster accepts TCP/IP")); |
427 | connect to a remote host, be sure that the remote postmaster accepts TCP/IP\n\ | 429 | printf (" %s\n\n", _("connections (start the postmaster with the -i option).")); |
428 | connections (start the postmaster with the -i option).\n")); | 430 | printf (" %s\n", _("Typically, the nagios user (unless the --logname option is used) should be")); |
429 | printf (_("\n\ | 431 | printf (" %s\n", _("able to connect to the database without a password. The plugin can also send")); |
430 | Typically, the nagios user (unless the --logname option is used) should be\n\ | 432 | printf (" %s\n", _("a password, but no effort is made to obsure or encrypt the password.")); |
431 | able to connect to the database without a password. The plugin can also send\n\ | ||
432 | a password, but no effort is made to obsure or encrypt the password.\n")); | ||
433 | 433 | ||
434 | printf (_(UT_SUPPORT)); | 434 | printf (_(UT_SUPPORT)); |
435 | } | 435 | } |
@@ -439,7 +439,7 @@ a password, but no effort is made to obsure or encrypt the password.\n")); | |||
439 | void | 439 | void |
440 | print_usage (void) | 440 | print_usage (void) |
441 | { | 441 | { |
442 | printf ("\ | 442 | printf (_("Usage:")); |
443 | Usage: %s [-H <host>] [-P <port>] [-c <critical time>] [-w <warning time>]\n\ | 443 | printf ("%s [-H <host>] [-P <port>] [-c <critical time>] [-w <warning time>]\n", progname); |
444 | [-t <timeout>] [-d <database>] [-l <logname>] [-p <password>]\n", progname); | 444 | printf (" [-t <timeout>] [-d <database>] [-l <logname>] [-p <password>]\n"); |
445 | } | 445 | } |