diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-05-23 19:01:18 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-05-23 19:01:18 +0000 |
commit | 57455fc565ca72f7423eca35b8141d1e3ddb65e8 (patch) | |
tree | 0a01b649898f11aa8efc82237ffc39ac991132e0 /contrib/linux/postgres.init.sh | |
parent | bd5cf46e0c0e675c73871184405995a17c60d229 (diff) | |
download | postgresql-57455fc565ca72f7423eca35b8141d1e3ddb65e8.tar.gz postgresql-57455fc565ca72f7423eca35b8141d1e3ddb65e8.zip |
Remove more -B parameters not needed.
Diffstat (limited to 'contrib/linux/postgres.init.sh')
-rwxr-xr-x | contrib/linux/postgres.init.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/linux/postgres.init.sh b/contrib/linux/postgres.init.sh index abeafd3bac3..ed538953d45 100755 --- a/contrib/linux/postgres.init.sh +++ b/contrib/linux/postgres.init.sh @@ -69,24 +69,24 @@ PGLOGFILE="/tmp/postgres.log" # # only used if syslog is disabled # -PGOPTS="-B 256" +PGOPTS="" # -B 256 # # The B option sets the number of shared buffers # # Add the "-i" option to enable TCP/IP sockets in addition # to unix domain sockets. This is needed for Java's JDBC # -# PGOPTS="-i -B 256" +# PGOPTS="-i" # # Add the -D option if you want to ovverride the PGDATA # environment variable defined in # -# PGOPTS="-B 256 -D/opt/pgsql/data +# PGOPTS="-D/opt/pgsql/data # # Add the -p option if you would like the listener to # attach to a port other than the one configured (5432?) # -# PGOPTS="-B 256 -D/opt/pgsql_beta/data -p 5433" +# PGOPTS="-D/opt/pgsql_beta/data -p 5433" # # Source function library. |