diff options
author | Magnus Hagander <magnus@hagander.net> | 2017-02-18 13:47:06 +0100 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2017-02-18 13:47:28 +0100 |
commit | 595c412760449d2a72b6a65a9711a1537b3b7277 (patch) | |
tree | d55a21759542f1a627d8e2524fa87d99e1c65763 /src | |
parent | 156fbdfcef5d5dfae63bddeeaef2f1aac15f2151 (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 ed78d09dd8f..ad0631f5307 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -237,7 +237,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")); |