@@ -1246,22 +1246,6 @@ tar -rf /var/lib/pgsql/backup.tar /var/lib/pgsql/archive/
12461246 Please remember to add error handling to your backup scripts.
12471247 </para>
12481248
1249- <para>
1250- If archive storage size is a concern, use <application>pg_compresslog</>,
1251- <ulink url="http://pglesslog.projects.postgresql.org"></ulink>, to
1252- remove unnecessary <xref linkend="guc-full-page-writes"> and trailing
1253- space from the WAL files. You can then use
1254- <application>gzip</application> to further compress the output of
1255- <application>pg_compresslog</>:
1256- <programlisting>
1257- archive_command = 'pg_compresslog %p - | gzip > /var/lib/pgsql/archive/%f'
1258- </programlisting>
1259- You will then need to use <application>gunzip</> and
1260- <application>pg_decompresslog</> during recovery:
1261- <programlisting>
1262- restore_command = 'gunzip < /mnt/server/archivedir/%f | pg_decompresslog - %p'
1263- </programlisting>
1264- </para>
12651249 </sect3>
12661250
12671251 <sect3 id="backup-scripts">