Fix archive_command example

The given archive_command example didn't use %p or %f, which wouldn't
really work in practice.
REL8_4_STABLE
Peter Eisentraut 14 years ago
parent a4a5d40190
commit 347e77beff
  1. 2
      doc/src/sgml/backup.sgml

@ -1380,7 +1380,7 @@ restore_command = 'gunzip < /mnt/server/archivedir/%f | pg_decompresslog - %p
<varname>archive_command</varname>, so that their
<filename>postgresql.conf</> entry looks very simple:
<programlisting>
archive_command = 'local_backup_script.sh'
archive_command = 'local_backup_script.sh "%p" "%f"'
</programlisting>
Using a separate script file is advisable any time you want to use
more than a single command in the archiving process.

Loading…
Cancel
Save