Skip to content

Commit c9439b6

Browse files
indrupspostgres-dev
authored andcommitted
[DOC] Fix syntax errorn in doc step elements
1 parent 9587b75 commit c9439b6

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

doc/pgprobackup.xml

+14-14
Original file line numberDiff line numberDiff line change
@@ -519,23 +519,23 @@ doc/src/sgml/pgprobackup.sgml
519519
<title>Steps to perform:</title>
520520
<procedure>
521521
<step>
522-
<title>Install <application>pg_probackup</application> on both <literal>backup_host</literal> and <literal>postgres_host</literal>.</title>
522+
<para>Install <application>pg_probackup</application> on both <literal>backup_host</literal> and <literal>postgres_host</literal>.</para>
523523
</step>
524524
<stepid="pbk-quickstart-setup-ssh">
525-
<title><linklinkend="pbk-setup-ssh">Set up an SSH connection</link> from <literal>backup_host</literal> to <literal>postgres_host</literal>.</title>
525+
<para><linklinkend="pbk-setup-ssh">Set up an SSH connection</link> from <literal>backup_host</literal> to <literal>postgres_host</literal>.</para>
526526
</step>
527527
<stepid="pbk-setup-postgresql-cluster">
528-
<title><linklinkend="pbk-configuring-the-database-cluster">Configure</link> your database cluster for <linklinkend="pbk-setting-up-stream-backups">STREAM backups</link>.</title>
528+
<para><linklinkend="pbk-configuring-the-database-cluster">Configure</link> your database cluster for <linklinkend="pbk-setting-up-stream-backups">STREAM backups</link>.</para>
529529
</step>
530530
<stepid="pbk-init-the-backup-catalog">
531-
<title>Initialize the backup catalog:</title>
531+
<para>Initialize the backup catalog:</para>
532532
<programlisting>
533533
backup_user@backup_host:~$ pg_probackup-16 init -B /mnt/backups
534534
INFO: Backup catalog '/mnt/backups' successfully initialized
535535
</programlisting>
536536
</step>
537537
<stepid="pbk-add-instance-to-backup-catalog">
538-
<title>Add a backup instance called <literal>mydb</literal> to the backup catalog:</title>
538+
<para>Add a backup instance called <literal>mydb</literal> to the backup catalog:</para>
539539
<programlisting>
540540
backup_user@backup_host:~$ pg_probackup-16 add-instance \
541541
-B /mnt/backups \
@@ -547,7 +547,7 @@ INFO: Instance 'mydb' successfully initialized
547547
</programlisting>
548548
</step>
549549
<stepid="pbk-make-full-backup">
550-
<title>Make a FULL backup:</title>
550+
<para>Make a FULL backup:</para>
551551
<programlisting>
552552
backup_user@backup_host:~$ pg_probackup-16 backup \
553553
-B /mnt/backups \
@@ -579,7 +579,7 @@ INFO: Backup S6OBFN completed
579579
</programlisting>
580580
</step>
581581
<stepid="pbk-list-backups">
582-
<title>List the backups of the instance:</title>
582+
<para>List the backups of the instance:</para>
583583
<programlisting>
584584
backup_user@backup_host:~$ pg_probackup-16 show -B /mnt/backups --instance=mydb
585585
================================================================================================================================
@@ -589,7 +589,7 @@ backup_user@backup_host:~$ pg_probackup-16 show -B /mnt/backups --instance=mydb
589589
</programlisting>
590590
</step>
591591
<stepid="pbk-make-incremental-backup-in-delta-mode">
592-
<title>Make an incremental backup in the DELTA mode:</title>
592+
<para>Make an incremental backup in the DELTA mode:</para>
593593
<programlisting>
594594
backup_user@backup_host:~$ pg_probackup-16 backup \
595595
-B /mnt/backups \
@@ -623,8 +623,8 @@ INFO: Backup S6OBLG completed
623623
</programlisting>
624624
</step>
625625
<stepid="pbk-save-config-parameters">
626-
<title>Add or modify some parameters in the <application>pg_probackup</application>
627-
configuration file, so that you do not have to specify them each time on the command line:</title>
626+
<para>Add or modify some parameters in the <application>pg_probackup</application>
627+
configuration file, so that you do not have to specify them each time on the command line:</para>
628628
<programlisting>
629629
backup_user@backup_host:~$ pg_probackup-16 set-config \
630630
-B /mnt/backups \
@@ -636,7 +636,7 @@ backup_user@backup_host:~$ pg_probackup-16 set-config \
636636
</programlisting>
637637
</step>
638638
<stepid="pbk-print-instance-config">
639-
<title>Check the configuration of the instance:</title>
639+
<para>Check the configuration of the instance:</para>
640640
<programlisting>
641641
backup_user@backup_host:~$ pg_probackup-16 show-config -B /mnt/backups --instance=mydb
642642
# Backup instance information
@@ -676,8 +676,8 @@ remote-user = postgres
676676
</para>
677677
</step>
678678
<stepid="pbk-make-another-incremental-backup-in-delta-mode-using-saved-parameters">
679-
<title>Make another incremental backup in the DELTA mode, omitting
680-
the parameters stored in the configuration file earlier:</title>
679+
<para>Make another incremental backup in the DELTA mode, omitting
680+
the parameters stored in the configuration file earlier:</para>
681681
<programlisting>
682682
backup_user@backup_host:~$ pg_probackup-16 backup -B /mnt/backups --instance=mydb -b delta --stream
683683
INFO: Backup start, pg_probackup version: 2.5.13, instance: mydb, backup ID: S6OBQO, backup mode: DELTA, wal mode: STREAM, remote: true, compress-algorithm: none, compress-level: 1
@@ -703,7 +703,7 @@ INFO: Backup S6OBQO completed
703703
</programlisting>
704704
</step>
705705
<stepid="pbk-list-backups-again">
706-
<title>List the backups of the instance again:</title>
706+
<para>List the backups of the instance again:</para>
707707
<programlisting>
708708
backup_user@backup_host:~$ pg_probackup-16 show -B /mnt/backups --instance=mydb
709709
==================================================================================================================================

0 commit comments

Comments
 (0)
close