diff options
| author | Peter Eisentraut <peter@eisentraut.org> | 2022-04-11 07:39:25 +0200 |
|---|---|---|
| committer | Peter Eisentraut <peter@eisentraut.org> | 2022-04-11 07:39:25 +0200 |
| commit | 0c65177a21a9e23490bee0e50ba61eeb287f7183 (patch) | |
| tree | 16b2c409dfa757b245f891321d42ded3b2d43c57 /src/bin/pg_rewind | |
| parent | 8ac700acffc7b17d88414be47b8dff44fb1ea681 (diff) | |
| download | postgresql-0c65177a21a9e23490bee0e50ba61eeb287f7183.tar.gz | |
Put new command-line options into alphabetical order in help output
Diffstat (limited to 'src/bin/pg_rewind')
| -rw-r--r-- | src/bin/pg_rewind/pg_rewind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_rewind/pg_rewind.c b/src/bin/pg_rewind/pg_rewind.c index 2ca4dd29af..1ff8da1676 100644 --- a/src/bin/pg_rewind/pg_rewind.c +++ b/src/bin/pg_rewind/pg_rewind.c @@ -88,8 +88,6 @@ usage(const char *progname) printf(_("Options:\n")); printf(_(" -c, --restore-target-wal use restore_command in target configuration to\n" " retrieve WAL files from archives\n")); - printf(_(" --config-file=FILENAME use specified main server configuration\n")); - printf(_(" file when running target cluster\n")); printf(_(" -D, --target-pgdata=DIRECTORY existing data directory to modify\n")); printf(_(" --source-pgdata=DIRECTORY source data directory to synchronize with\n")); printf(_(" --source-server=CONNSTR source server to synchronize with\n")); @@ -99,6 +97,8 @@ usage(const char *progname) printf(_(" -P, --progress write progress messages\n")); printf(_(" -R, --write-recovery-conf write configuration for replication\n" " (requires --source-server)\n")); + printf(_(" --config-file=FILENAME use specified main server configuration\n" + " file when running target cluster\n")); printf(_(" --debug write a lot of debug messages\n")); printf(_(" --no-ensure-shutdown do not automatically fix unclean shutdown\n")); printf(_(" -V, --version output version information, then exit\n")); |
