projects
/
pgpool2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21b3ae6
)
Fix rsync parameter in pgpool_setup.
author
Tatsuo Ishii
<ishii@sraoss.co.jp>
Mon, 28 Jun 2021 05:59:06 +0000
(14:59 +0900)
committer
Tatsuo Ishii
<ishii@sraoss.co.jp>
Mon, 28 Jun 2021 06:03:37 +0000
(15:03 +0900)
It did not exclude "log" directory, which is the default logging
directory in recent PostgreSQL versions. This made hard to examine
PostgreSQL log, since it is copied from primary server.
src/test/pgpool_setup.in
patch
|
blob
|
blame
|
history
diff --git
a/src/test/pgpool_setup.in
b/src/test/pgpool_setup.in
index 36953d4598aa1af24ca486075bc61c123b7d22f9..fba5abe8d70a91b0c40ed12f95ff59e55d678dbe 100755
(executable)
--- a/
src/test/pgpool_setup.in
+++ b/
src/test/pgpool_setup.in
@@
-375,6
+375,7
@@
rsync -C -a -c --delete --exclude postgresql.conf --exclude postmaster.pid \
--exclude postmaster.opts --exclude pg_log \
--exclude recovery.conf --exclude recovery.done \
--exclude pg_xlog --exclude pg_wal \
+--exclude log \
$master_db_cluster/ $DEST_CLUSTER/
rm -fr $DEST_CLUSTER/pg_xlog