diff options
author | Luca Longinotti <chtekk@gentoo.org> | 2006-11-07 22:48:22 +0000 |
---|---|---|
committer | Luca Longinotti <chtekk@gentoo.org> | 2006-11-07 22:48:22 +0000 |
commit | 52e49891c469858242a3fe17733d8051de1ca108 (patch) | |
tree | 85e236873bb2e820b87d71211798527d84283272 /dev-db/postgresql/files/postgresql.conf-7.4 | |
parent | New generation libpq/pgsql ebuilds. (diff) | |
download | gentoo-2-52e49891c469858242a3fe17733d8051de1ca108.tar.gz gentoo-2-52e49891c469858242a3fe17733d8051de1ca108.tar.bz2 gentoo-2-52e49891c469858242a3fe17733d8051de1ca108.zip |
New generation libpq/pgsql ebuilds.
(Portage version: 2.1.2_rc1-r4)
Diffstat (limited to 'dev-db/postgresql/files/postgresql.conf-7.4')
-rw-r--r-- | dev-db/postgresql/files/postgresql.conf-7.4 | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/dev-db/postgresql/files/postgresql.conf-7.4 b/dev-db/postgresql/files/postgresql.conf-7.4 index e8dab3e4c827..c6fd787f744d 100644 --- a/dev-db/postgresql/files/postgresql.conf-7.4 +++ b/dev-db/postgresql/files/postgresql.conf-7.4 @@ -1,14 +1,13 @@ # PostgreSQL's Database Directory -PGDATA=/var/lib/postgresql/data +PGDATA="/var/lib/postgresql/data" -# Logfile path: (NOTE: This must be uid/gid owned by the value of $PGUSER!) -PGLOG=/var/lib/postgresql/data/postgresql.log +# Logfile path (NOTE: This must be owned by the uid/gid of $PGUSER!) +PGLOG="/var/lib/postgresql/data/postgresql.log" -# Run the PostgreSQL user as: -PGUSER=postgres - -# Extra options to run postmaster with. -# If you want to enable TCP/IP for PostgreSQL, add -i to the following: -# PGOPTS="-N 1024 -B 2048 -i" -PGOPTS="" +# PostgreSQL User +PGUSER="postgres" +# Extra options to run postmaster with +# If you want to enable TCP/IP for PostgreSQL, add -i, like the following: +# PGOPTS="-N 512 -B 1024 -i" +PGOPTS="-N 512 -B 1024" |