diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-06-20 16:27:40 -0400 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-06-20 16:27:40 -0400 |
| commit | 57ad59a2c187a285cff956743ea460026f231b51 (patch) | |
| tree | 7eb50c0eb01d5dfbdcb3bcc31a922ebe162c0765 | |
| parent | 5f129cf942bb16d5e6d9db01db1789c98116baa1 (diff) | |
Fix missed use of "cp -i" in an example, per Fujii Masao.
Also be more careful about markup: use & not just &.
| -rw-r--r-- | doc/src/sgml/backup.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/backup.sgml b/doc/src/sgml/backup.sgml index ddc01da94f7..c63e48bb1b1 100644 --- a/doc/src/sgml/backup.sgml +++ b/doc/src/sgml/backup.sgml @@ -577,7 +577,7 @@ tar -cf backup.tar /usr/local/pgsql/data character in the command. The simplest useful command is something like: <programlisting> -archive_command = 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f' # Unix +archive_command = 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f' # Unix archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows </programlisting> which will copy archivable WAL segments to the directory @@ -1199,7 +1199,7 @@ restore_command = 'cp /mnt/server/archivedir/%f %p' <literal>on</>, and set up an <varname>archive_command</> that performs archiving only when a <emphasis>switch file</> exists. For example: <programlisting> -archive_command = 'test ! -f /var/lib/pgsql/backup_in_progress || cp -i %p /var/lib/pgsql/archive/%f < /dev/null' +archive_command = 'test ! -f /var/lib/pgsql/backup_in_progress || (test ! -f /var/lib/pgsql/archive/%f && cp %p /var/lib/pgsql/archive/%f)' </programlisting> This command will perform archiving when <filename>/var/lib/pgsql/backup_in_progress</> exists, and otherwise |
