summaryrefslogtreecommitdiff
path: root/databases/postgresql80-server
diff options
context:
space:
mode:
authorcjs <cjs>2005-05-16 01:02:20 +0000
committercjs <cjs>2005-05-16 01:02:20 +0000
commit99505867670a31dc3db29f0bf611edb9e2c2daa6 (patch)
tree041f9b79d6463c2f8c808e38ce8a0cb8b033996c /databases/postgresql80-server
parent407063efbc33e447f914e8b543bd475817da3856 (diff)
downloadpkgsrc-99505867670a31dc3db29f0bf611edb9e2c2daa6.tar.gz
Move "-m fast" argument from stop_command_args to common_args so that
restart picks it up, too.
Diffstat (limited to 'databases/postgresql80-server')
-rw-r--r--databases/postgresql80-server/files/pgsql.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/postgresql80-server/files/pgsql.sh b/databases/postgresql80-server/files/pgsql.sh
index 481fc1e9d14..837d8c89a6e 100644
--- a/databases/postgresql80-server/files/pgsql.sh
+++ b/databases/postgresql80-server/files/pgsql.sh
@@ -1,6 +1,6 @@
#!@RCD_SCRIPTS_SHELL@
#
-# $NetBSD: pgsql.sh,v 1.1.1.1 2005/02/06 12:32:06 jdolecek Exp $
+# $NetBSD: pgsql.sh,v 1.2 2005/05/16 01:02:20 cjs Exp $
#
# PostgreSQL database rc.d control script
#
@@ -42,9 +42,9 @@ elif [ -f /etc/rc.conf ]; then
fi
pidfile="${pgsql_home}/data/postmaster.pid"
-common_args="-D ${pgsql_home}/data"
+common_args="-D ${pgsql_home}/data -m fast"
start_command_args="-w -s -l ${pgsql_home}/errlog"
-stop_command_args="-s -m fast"
+stop_command_args="-s"
initdb_cmd="pgsql_initdb"
start_precmd="pgsql_precmd"