Skip to content

Commit 463d4db

Browse files
committed
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.
1 parent b5005ff commit 463d4db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_basebackup/pg_basebackup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ usage(void)
136136
printf(_(" -D, --pgdata=DIRECTORY receive base backup into directory\n"));
137137
printf(_(" -F, --format=p|t output format (plain (default), tar)\n"));
138138
printf(_(" -R, --write-recovery-conf\n"
139-
" write recovery.conf after backup\n"));
139+
" write recovery.conf for replication\n"));
140140
printf(_(" -x, --xlog include required WAL files in backup (fetch mode)\n"));
141141
printf(_(" -X, --xlog-method=fetch|stream\n"
142142
" include required WAL files with specified method\n"));

0 commit comments

Comments
 (0)