aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2017-02-18 13:47:06 +0100
committerMagnus Hagander <magnus@hagander.net>2017-02-18 13:47:06 +0100
commita83e7405a169d3b9ddef08e273ed1b1769fe3491 (patch)
tree8b97ef161bf2340476c4e2242d114827da32166f /src
parent447591c70c4aaef950f8cee6db188e4c35bc551f (diff)
downloadpostgresql-a83e7405a169d3b9ddef08e273ed1b1769fe3491.tar.gz
postgresql-a83e7405a169d3b9ddef08e273ed1b1769fe3491.zip
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.c2
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 fd93a3bc09e..2748f58106f 100644
--- a/src/bin/pg_basebackup/pg_basebackup.c
+++ b/src/bin/pg_basebackup/pg_basebackup.c
@@ -240,7 +240,7 @@ usage(void)
printf(_(" -r, --max-rate=RATE maximum transfer rate to transfer data directory\n"
" (in kB/s, or use suffix \"k\" or \"M\")\n"));
printf(_(" -R, --write-recovery-conf\n"
- " write recovery.conf after backup\n"));
+ " write recovery.conf for replication\n"));
printf(_(" -T, --tablespace-mapping=OLDDIR=NEWDIR\n"
" relocate tablespace in OLDDIR to NEWDIR\n"));
printf(_(" -x, --xlog include required WAL files in backup (fetch mode)\n"));