Re: doc patch - archive/restore_command on windows

From: Bruce Momjian <bruce(at)momjian(dot)us>
To: ITAGAKI Takahiro <itagaki(dot)takahiro(at)oss(dot)ntt(dot)co(dot)jp>
Cc: pgsql-patches(at)postgresql(dot)org
Subject: Re: doc patch - archive/restore_command on windows
Date: 2008-07-18 17:33:49
Message-ID: 200807181733.m6IHXnh26332@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches


This is the patch version I applied. Thanks again.

---------------------------------------------------------------------------

ITAGAKI Takahiro wrote:
> Sorry, this is a correct patch.
>
> Index: doc/src/sgml/backup.sgml
> ===================================================================
> --- doc/src/sgml/backup.sgml (HEAD)
> +++ doc/src/sgml/backup.sgml (working copy)
> @@ -1122,7 +1122,7 @@
> when so asked. Examples:
> <programlisting>
> restore_command = 'cp /mnt/server/archivedir/%f "%p"'
> -restore_command = 'copy /mnt/server/archivedir/%f "%p"' # Windows
> +restore_command = 'copy "C:\\server\\archivedir\\%f" "%p"' # Windows
> </programlisting>
> </para>
> </listitem>
> Index: doc/src/sgml/config.sgml
> ===================================================================
> --- doc/src/sgml/config.sgml (HEAD)
> +++ doc/src/sgml/config.sgml (working copy)
> @@ -1698,7 +1698,7 @@
> and only if it succeeds. Examples:
> <programlisting>
> archive_command = 'cp "%p" /mnt/server/archivedir/"%f"'
> -archive_command = 'copy "%p" /mnt/server/archivedir/"%f"' # Windows
> +archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows
> </programlisting>
> </para>
> </listitem>
>
>
> Regards,
> ---
> ITAGAKI Takahiro
> NTT Open Source Software Center
>
>
>
> --
> Sent via pgsql-patches mailing list (pgsql-patches(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-patches

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +

In response to

Browse pgsql-patches by date

  From Date Subject
Next Message Tom Lane 2008-07-18 20:42:36 Re: [PATCHES] WIP: executor_hook for pg_stat_statements
Previous Message Bruce Momjian 2008-07-18 17:33:17 Re: doc patch - archive/restore_command on windows