diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-05-14 22:22:01 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-05-14 22:22:01 +0000 |
commit | bfab3f19e3bd75b95e419cf9ac0eb22d03669ef3 (patch) | |
tree | 0aa630365ddbd976d92c7b93c92fb3fcdbd95c07 /src | |
parent | 1b6f549de5e2fa729e2291e28c7d31d539179b80 (diff) | |
download | postgresql-bfab3f19e3bd75b95e419cf9ac0eb22d03669ef3.tar.gz postgresql-bfab3f19e3bd75b95e419cf9ac0eb22d03669ef3.zip |
Include recovery_end_command in recovery.conf.sample.
Per suggestion of Jaime Casanova.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/transam/recovery.conf.sample | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/backend/access/transam/recovery.conf.sample b/src/backend/access/transam/recovery.conf.sample index e3068d535d6..1ef80ac60fd 100644 --- a/src/backend/access/transam/recovery.conf.sample +++ b/src/backend/access/transam/recovery.conf.sample @@ -40,7 +40,6 @@ # NOTE that the basename of %p will be different from %f; do not # expect them to be interchangeable. # -# #restore_command = 'cp /mnt/server/archivedir/%f %p' # # @@ -48,6 +47,14 @@ # OPTIONAL PARAMETERS #--------------------------------------------------------------------------- # +# recovery_end_command +# +# specifies an optional shell command to execute at completion of recovery. +# This can be useful for cleaning up after the restore_command. +# +#recovery_end_command = '' +# +# # By default, recovery will rollforward to the end of the WAL log. # If you want to stop rollforward before that point, you # must set a recovery target. |