diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2015-05-08 07:54:05 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2015-05-08 07:54:54 +0000 |
commit | d1231930d4573229ab6c95b3c9b4852a5125d431 (patch) | |
tree | 6d7f80902cc23eadf13dd68b4fa68a76d0973e91 /testing/postgresql-bdr/postgresql-bdr.confd | |
parent | 336c258db7dffa3d12f2f00cf4524a578e4f48b3 (diff) | |
download | aports-d1231930d4573229ab6c95b3c9b4852a5125d431.tar.bz2 aports-d1231930d4573229ab6c95b3c9b4852a5125d431.tar.xz |
Revert "main/postgresql-{bdr,bdr-extension}: moved from testing"
This reverts commit 9a77d3fa7ad4acce0dc2b607df9a2218142cbb26.
Diffstat (limited to 'testing/postgresql-bdr/postgresql-bdr.confd')
-rw-r--r-- | testing/postgresql-bdr/postgresql-bdr.confd | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/testing/postgresql-bdr/postgresql-bdr.confd b/testing/postgresql-bdr/postgresql-bdr.confd new file mode 100644 index 0000000000..c6e8c6d993 --- /dev/null +++ b/testing/postgresql-bdr/postgresql-bdr.confd @@ -0,0 +1,55 @@ +# Which port and socket to bind PostgreSQL +PGPORT="5432" + +# How long to wait for server to start in seconds +START_TIMEOUT=10 + +# NICE_QUIT ignores new connections and wait for clients to disconnect from +# server before shutting down. NICE_TIMEOUT in seconds determines how long to +# wait for this to succeed. +NICE_TIMEOUT=60 + +# Forecfully disconnect clients from server and shut down. This is performed +# after NICE_QUIT. Terminated client connections have their open transactions +# rolled back. +# Set RUDE_QUIT to "NO" to disable. RUDE_TIMEOUT in seconds. +RUDE_QUIT="YES" +RUDE_TIMEOUT=30 + +# If the server still fails to shutdown, you can force it to quit by setting +# this to YES and a recover-run will execute on the next startup. +# Set FORCE_QUIT to "YES" to enable. FORCE_TIMEOUT in seconds. +FORCE_QUIT="NO" +FORCE_TIMEOUT=2 + +# Extra options to run postmaster with, e.g.: +# -N is the maximal number of client connections +# -B is the number of shared buffers and has to be at least 2x the value for -N +# Please read the man-page to postmaster for more options. Many of these +# options can be set directly in the configuration file. +#PGOPTS="-N 512 -B 1024" + +# Pass extra environment variables. If you have to export environment variables +# for the database process, this can be done here. +# Don't forget to escape quotes. +#PG_EXTRA_ENV="PGPASSFILE=\"/path/to/.pgpass\"" + +############################################################################## +# +# The following values should not be arbitrarily changed. +# +# The initscript uses these variables to inform PostgreSQL where to find +# its data directory and configuration files. +# +############################################################################## + +# PostgreSQL's Database Directory +PGDATA="/var/lib/postgresql/9.4/data" + +# Additional options to pass to initdb. +# See `man initdb' for available options. +#PG_INITDB_OPTS="--locale=en_US.UTF-8" + +# Automatically set up a new database if missing on startup +AUTO_SETUP=yes + |