diff options
author | Magnus Hagander <magnus@hagander.net> | 2017-02-18 13:48:15 +0100 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2017-02-18 13:48:15 +0100 |
commit | 463d4dbfb24b71ed4fdf2a252d0474704f4952c9 (patch) | |
tree | f92c68dbb8db8e7011097e016ab5ade04a7d9f38 /src | |
parent | b5005ffa4627c1c805408389da92e2bcf515a192 (diff) |
Fix help message for pg_basebackup -R
The recovery.conf file that's generated is specifically for
replication, and not needed (or wanted) for regular backup restore, so
indicate that in the message.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_basebackup/pg_basebackup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index 94686fdc8ad..5c9bf68ffbf 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -136,7 +136,7 @@ usage(void) printf(_(" -D, --pgdata=DIRECTORY receive base backup into directory\n")); printf(_(" -F, --format=p|t output format (plain (default), tar)\n")); printf(_(" -R, --write-recovery-conf\n" - " write recovery.conf after backup\n")); + " write recovery.conf for replication\n")); printf(_(" -x, --xlog include required WAL files in backup (fetch mode)\n")); printf(_(" -X, --xlog-method=fetch|stream\n" " include required WAL files with specified method\n")); |