|
4 | 4 | *
|
5 | 5 | * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
|
6 | 6 | *
|
7 |
| - * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.86 2007/11/10 21:48:51 momjian Exp $ |
| 7 | + * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.87 2007/11/15 18:37:23 petere Exp $ |
8 | 8 | *
|
9 | 9 | *-------------------------------------------------------------------------
|
10 | 10 | */
|
@@ -1465,22 +1465,22 @@ do_help(void)
|
1465 | 1465 | printf(_("%s is a utility to start, stop, restart, reload configuration files,\n"
|
1466 | 1466 | "report the status of a PostgreSQL server, or signal a PostgreSQL process.\n\n"), progname);
|
1467 | 1467 | printf(_("Usage:\n"));
|
1468 |
| - printf(_(" %s start [-w] [-t secs] [-D DATADIR] [-s] [-l FILENAME] [-o \"OPTIONS\"]\n"), progname); |
| 1468 | + printf(_(" %s start [-w] [-t SECS] [-D DATADIR] [-s] [-l FILENAME] [-o \"OPTIONS\"]\n"), progname); |
1469 | 1469 | printf(_(" %s stop [-W] [-D DATADIR] [-s] [-m SHUTDOWN-MODE]\n"), progname);
|
1470 |
| - printf(_(" %s restart [-w] [-t secs] [-D DATADIR] [-s] [-m SHUTDOWN-MODE]\n [-o \"OPTIONS\"]\n"), progname); |
| 1470 | + printf(_(" %s restart [-w] [-t SECS] [-D DATADIR] [-s] [-m SHUTDOWN-MODE]\n [-o \"OPTIONS\"]\n"), progname); |
1471 | 1471 | printf(_(" %s reload [-D DATADIR] [-s]\n"), progname);
|
1472 | 1472 | printf(_(" %s status [-D DATADIR]\n"), progname);
|
1473 | 1473 | printf(_(" %s kill SIGNALNAME PID\n"), progname);
|
1474 | 1474 | #if defined(WIN32) || defined(__CYGWIN__)
|
1475 | 1475 | printf(_(" %s register [-N SERVICENAME] [-U USERNAME] [-P PASSWORD] [-D DATADIR]\n"
|
1476 |
| - " [-w] [-t timeout] [-o \"OPTIONS\"]\n"), progname); |
| 1476 | + " [-w] [-t SECS] [-o \"OPTIONS\"]\n"), progname); |
1477 | 1477 | printf(_(" %s unregister [-N SERVICENAME]\n"), progname);
|
1478 | 1478 | #endif
|
1479 | 1479 |
|
1480 | 1480 | printf(_("\nCommon options:\n"));
|
1481 | 1481 | printf(_(" -D, --pgdata DATADIR location of the database storage area\n"));
|
1482 | 1482 | printf(_(" -s, --silent only print errors, no informational messages\n"));
|
1483 |
| - printf(_(" -t secs seconds to wait when using -w option\n")); |
| 1483 | + printf(_(" -t SECS seconds to wait when using -w option\n")); |
1484 | 1484 | printf(_(" -w wait until operation completes\n"));
|
1485 | 1485 | printf(_(" -W do not wait until operation completes\n"));
|
1486 | 1486 | printf(_(" --help show this help, then exit\n"));
|
|
0 commit comments