summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorBruce Momjian2010-09-13 01:35:46 +0000
committerBruce Momjian2010-09-13 01:35:46 +0000
commitdf57a5e8981d1a3272d4693ffc64eda0afbd3ac1 (patch)
tree46edf3414b54e809ed0af09e520d68877d0fedc9 /doc/src
parent1400b738a04ad725e6525370bf76c67dbec14b83 (diff)
Don't try aligning comments for new archive_command Win32 doc example;
it doesn't work. Backpatch to 9.0.X.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/backup.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/backup.sgml b/doc/src/sgml/backup.sgml
index 74bffc0f8db..edfdba7342e 100644
--- a/doc/src/sgml/backup.sgml
+++ b/doc/src/sgml/backup.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.158 2010/09/12 13:47:12 momjian Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.159 2010/09/13 01:35:46 momjian Exp $ -->
<chapter id="backup">
<title>Backup and Restore</title>
@@ -577,8 +577,8 @@ tar -cf backup.tar /usr/local/pgsql/data
character in the command. The simplest useful command is something
like:
<programlisting>
-archive_command = 'cp -i %p /mnt/server/archivedir/%f &lt;/dev/null' # Unix
-archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows
+archive_command = 'cp -i %p /mnt/server/archivedir/%f &lt;/dev/null' # Unix
+archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows
</programlisting>
which will copy archivable WAL segments to the directory
<filename>/mnt/server/archivedir</>. (This is an example, not a