diff options
Diffstat (limited to 'dev-db/postgresql-server/files/postgresql.conf-7.3')
-rw-r--r-- | dev-db/postgresql-server/files/postgresql.conf-7.3 | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/dev-db/postgresql-server/files/postgresql.conf-7.3 b/dev-db/postgresql-server/files/postgresql.conf-7.3 index 67b3105..e4b1c55 100644 --- a/dev-db/postgresql-server/files/postgresql.conf-7.3 +++ b/dev-db/postgresql-server/files/postgresql.conf-7.3 @@ -1,5 +1,5 @@ # PostgreSQL's Database Directory -PGDATA="/var/lib/postgresql/7.3/data" +PGDATA="/var/lib/postgresql/8.1/data" # PostgreSQL User PGUSER="postgres" @@ -31,10 +31,15 @@ PGGROUP="postgres" # This will terminate the server immediately and results in a recovery run for the next start. # Wait for clients to disconnect (seconds or "forever") -WAIT_FOR_DISCONNECT=10 +WAIT_FOR_DISCONNECT=30 # Time the server has to clean up (seconds or "forever") -WAIT_FOR_CLEANUP=10 +WAIT_FOR_CLEANUP=60 + +# Time the server has to quit (with a recover-run on next startup) +# Set to 0 to deactivate it +WAIT_FOR_QUIT=60 + # If you have to export environment variables for the database process, # this can be done here. |