diff --git a/doc/repmgr-standby-clone.sgml b/doc/repmgr-standby-clone.sgml
index a4cd8a5b..36e00473 100644
--- a/doc/repmgr-standby-clone.sgml
+++ b/doc/repmgr-standby-clone.sgml
@@ -155,7 +155,7 @@
When initially cloning a standby, you will need to ensure
that all required WAL files remain available while the cloning is taking
place. To ensure this happens when using the default pg_basebackup method,
- &repmgr; will set pg_basebackup's --xlog-method
+ &repmgr; will set pg_basebackup's --wal-method
parameter to stream,
which will ensure all WAL files generated during the cloning process are
streamed in parallel with the main backup. Note that this requires two
@@ -165,10 +165,10 @@
To override this behaviour, in repmgr.conf set
- pg_basebackup's --xlog-method
+ pg_basebackup's --wal-method
parameter to fetch:
- pg_basebackup_options='--xlog-method=fetch'
+ pg_basebackup_options='--wal-method=fetch'
and ensure that wal_keep_segments is set to an appropriately high value.
See the
@@ -177,9 +177,8 @@
- From PostgreSQL 10, pg_basebackup's
- --xlog-method parameter has been renamed to
- --wal-method.
+ If using PostgreSQL 9.6 or earlier, replace --wal-method
+ with --xlog-method.