@@ -97,9 +97,9 @@ help_pg_probackup(void)
9797printf (_ (" [--format=format]\n" ));
9898
9999printf (_ ("\n %s backup -B backup-path -b backup-mode --instance=instance_name\n" ),PROGRAM_NAME );
100- printf (_ (" [-C] [--stream [-S slot-name]] [--backup-pg-log ]\n" ));
101- printf (_ (" [-j num-threads ] [--archive-timeout=archive-timeout ]\n" ));
102- printf (_ (" [--progress]\n" ));
100+ printf (_ (" [-C] [--stream [-S slot-name] [--temp-slot ]\n" ));
101+ printf (_ (" [--backup-pg-log ] [-j num-threads ]\n" ));
102+ printf (_ (" [--archive-timeout=archive-timeout] [-- progress]\n" ));
103103printf (_ (" [--log-level-console=log-level-console]\n" ));
104104printf (_ (" [--log-level-file=log-level-file]\n" ));
105105printf (_ (" [--log-filename=log-filename]\n" ));
@@ -201,9 +201,9 @@ static void
201201help_backup (void )
202202{
203203printf (_ ("%s backup -B backup-path -b backup-mode --instance=instance_name\n" ),PROGRAM_NAME );
204- printf (_ (" [-C] [--stream [-S slot-name]] [--backup-pg-log ]\n" ));
205- printf (_ (" [-j num-threads ] [--archive-timeout=archive-timeout ]\n" ));
206- printf (_ (" [--progress]\n" ));
204+ printf (_ (" [-C] [--stream [-S slot-name] [--temp-slot ]\n" ));
205+ printf (_ (" [--backup-pg-log ] [-j num-threads ]\n" ));
206+ printf (_ (" [--archive-timeout=archive-timeout] [-- progress]\n" ));
207207printf (_ (" [--log-level-console=log-level-console]\n" ));
208208printf (_ (" [--log-level-file=log-level-file]\n" ));
209209printf (_ (" [--log-filename=log-filename]\n" ));
@@ -233,6 +233,7 @@ help_backup(void)
233233printf (_ (" -C, --smooth-checkpoint do smooth checkpoint before backup\n" ));
234234printf (_ (" --stream stream the transaction log and include it in the backup\n" ));
235235printf (_ (" -S, --slot=SLOTNAME replication slot to use\n" ));
236+ printf (_ (" --temp-slot use temporary replication slot\n" ));
236237printf (_ (" --backup-pg-log backup of '%s' directory\n" ),PG_LOG_DIR );
237238printf (_ (" -j, --threads=NUM number of parallel threads\n" ));
238239printf (_ (" --archive-timeout=timeout wait timeout for WAL segment archiving (default: 5min)\n" ));
@@ -285,11 +286,11 @@ help_backup(void)
285286printf (_ (" -W, --password force password prompt\n" ));
286287
287288printf (_ ("\n Replica options:\n" ));
288- printf (_ (" --master-user=user_name user name to connect to master\n" ));
289- printf (_ (" --master-db=db_name database to connect to master\n" ));
290- printf (_ (" --master-host=host_name database server host of master\n" ));
291- printf (_ (" --master-port=port database server port of master\n" ));
292- printf (_ (" --replica-timeout=timeout wait timeout for WAL segment streaming through replication (default: 5min )\n" ));
289+ printf (_ (" --master-user=user_name user name to connect to master (deprecated) \n" ));
290+ printf (_ (" --master-db=db_name database to connect to master (deprecated) \n" ));
291+ printf (_ (" --master-host=host_name database server host of master (deprecated) \n" ));
292+ printf (_ (" --master-port=port database server port of master (deprecated) \n" ));
293+ printf (_ (" --replica-timeout=timeout wait timeout for WAL segment streaming through replication (deprecated )\n" ));
293294
294295printf (_ ("\n Remote options:\n" ));
295296printf (_ (" --remote-proto=protocol remote protocol to use\n" ));
@@ -570,14 +571,15 @@ help_set_config(void)
570571printf (_ (" -h, --host=HOSTNAME database server host or socket directory(default: 'local socket')\n" ));
571572printf (_ (" -p, --port=PORT database server port (default: 5432)\n" ));
572573
573- printf (_ ("\n Replica options:\n" ));
574- printf (_ (" --master-user=user_name user name to connect to master\n" ));
575- printf (_ (" --master-db=db_name database to connect to master\n" ));
576- printf (_ (" --master-host=host_name database server host of master\n" ));
577- printf (_ (" --master-port=port database server port of master\n" ));
578- printf (_ (" --replica-timeout=timeout wait timeout for WAL segment streaming through replication (default: 5min)\n" ));
579574printf (_ ("\n Archive options:\n" ));
580575printf (_ (" --archive-timeout=timeout wait timeout for WAL segment archiving (default: 5min)\n" ));
576+
577+ printf (_ ("\n Replica options:\n" ));
578+ printf (_ (" --master-user=user_name user name to connect to master (deprecated)\n" ));
579+ printf (_ (" --master-db=db_name database to connect to master (deprecated)\n" ));
580+ printf (_ (" --master-host=host_name database server host of master (deprecated)\n" ));
581+ printf (_ (" --master-port=port database server port of master (deprecated)\n" ));
582+ printf (_ (" --replica-timeout=timeout wait timeout for WAL segment streaming through replication (deprecated)\n" ));
581583}
582584
583585static void