diff options
Diffstat (limited to 'testing/pgbouncer/pgbouncer.confd')
-rw-r--r-- | testing/pgbouncer/pgbouncer.confd | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/testing/pgbouncer/pgbouncer.confd b/testing/pgbouncer/pgbouncer.confd index 84961a83c9..c5408bbe31 100644 --- a/testing/pgbouncer/pgbouncer.confd +++ b/testing/pgbouncer/pgbouncer.confd @@ -1,12 +1,19 @@ +# Configuration file for /etc/init.d/pgbouncer + # Location of configuration file for PgBouncer. -INIFILE="/etc/pgbouncer/pgbouncer.ini" +#cfgfile="/etc/pgbouncer/pgbouncer.ini" + +# The user to run PgBouncer as. +#user=pgbouncer + +# The group to run PgBouncer as. +#group=postgresql # How long to wait in seconds for a safe shutdown. Equivalent to -# issuing 'PAUSE;' and 'SHUTDOWN;' on psql console. (See 'man 1 pgbouncer'.) -NICE_TIMEOUT=60 - -# Set to 'YES' to perform an immediate shutdown if the nice shutdown -# doesn't work. Same as issuing 'SHUTDOWN;' on console. (See 'man 1 -# pgbouncer'.) -FORCE_QUIT="no" -FORCE_QUIT_TIMEOUT=2 +# issuing 'PAUSE;' and 'SHUTDOWN;' on psql console. See pgbouncer(1). +#nice_timeout=60 + +# Set to 'yes' to perform an immediate shutdown if the nice shutdown +# doesn't work. Same as issuing 'SHUTDOWN;' on console. See pgbouncer(1). +#force_quit=="no" +#force_quit_timeout=2 |