summaryrefslogtreecommitdiff
path: root/contrib/linux/postgres.init.csh
diff options
context:
space:
mode:
authorBruce Momjian1999-05-23 19:01:18 +0000
committerBruce Momjian1999-05-23 19:01:18 +0000
commit6de27fcd5fe172c9130ffc15d4834d749fa75595 (patch)
tree377954a35404965e9f61ced9385c21a0fd566853 /contrib/linux/postgres.init.csh
parent371972eaa95e23fe9e6faa7e0d3d9488d5fecb30 (diff)
Remove more -B parameters not needed.
Diffstat (limited to 'contrib/linux/postgres.init.csh')
-rwxr-xr-xcontrib/linux/postgres.init.csh4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/linux/postgres.init.csh b/contrib/linux/postgres.init.csh
index acd1c2a4ed..298cc93f20 100755
--- a/contrib/linux/postgres.init.csh
+++ b/contrib/linux/postgres.init.csh
@@ -14,13 +14,13 @@
PGACCOUNT="postgres" # the postgres account (you called it something else?)
POSTMASTER="postmaster" # this probably won't change
-USE_SOCKET="yes" # "no" to disable Unix sockets on localhost
+USE_SOCKET="yes" # "no" to enable tcp/ip(remote) access
PGSOCKETFILE="/tmp/.s.PGSQL.5432"
USE_SYSLOG="yes" # "yes" to enable syslog, "no" to go to /tmp/postgres.log
FACILITY="local5" # can assign local0-local7 as the facility for logging
PGLOGFILE="/tmp/postgres.log" # only used if syslog is disabled
-PGOPTS="-i -B 1024" # -S -o '-Fe'"
+PGOPTS="" #-B 1024 -S -o '-Fe'
if [ ${USE_SOCKET} = "no" ]
then
PGOPTS="-i ${PGOPTS}" # -i to enable TCP/IP rather than Unix socket