diff options
author | Michael Paquier | 2012-06-05 12:45:44 +0000 |
---|---|---|
committer | Michael Paquier | 2012-06-05 12:45:44 +0000 |
commit | b003afe5ea7cf83f4f877161d3d7d76edce7a114 (patch) | |
tree | ceae5f8620c17bea146f473a67272ccc58deea40 | |
parent | a868afadd0c3b19be26008c6f6725ee3285deebf (diff) |
Update pg_ctl with correct bug ML and reorganize help
The PostgreSQL mailing list for bugs was incorrectly used.
-rw-r--r-- | src/bin/pg_ctl/pg_ctl.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index 02c84ddcc2..aadf178e6a 100644 --- a/src/bin/pg_ctl/pg_ctl.c +++ b/src/bin/pg_ctl/pg_ctl.c @@ -1785,11 +1785,11 @@ do_help(void) printf(_(" -D, --pgdata DATADIR location of the database storage area\n")); printf(_(" -s, --silent only print errors, no informational messages\n")); printf(_(" -t SECS seconds to wait when using -w option\n")); + printf(_(" -w wait until operation completes\n")); + printf(_(" -W do not wait until operation completes\n")); #ifdef PGXC printf(_(" -Z NODE-TYPE can be \"coordinator\" or \"datanode\" (Postgres-XC)\n")); #endif - printf(_(" -w wait until operation completes\n")); - printf(_(" -W do not wait until operation completes\n")); printf(_(" --help show this help, then exit\n")); printf(_(" --version output version information, then exit\n")); printf(_("(The default is to wait for shutdown, but not for start or restart.)\n\n")); @@ -1828,7 +1828,11 @@ do_help(void) printf(_(" demand start service on demand\n")); #endif +#ifdef PGXC + printf(_("\nReport bugs to <[email protected]>.\n")); +#else printf(_("\nReport bugs to <[email protected]>.\n")); +#endif } |