diff options
author | jlam <jlam> | 2002-10-19 21:32:46 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-10-19 21:32:46 +0000 |
commit | 5eedd381ec7302c071af5a5d2e41c5497df5934e (patch) | |
tree | 0457408564830d1b7f15788ac6f271732409431a /databases | |
parent | 59ee4de87421c30a671c0caf666491d555e6c426 (diff) | |
download | pkgsrc-5eedd381ec7302c071af5a5d2e41c5497df5934e.tar.gz |
Forgot to fix quoting for pgsql_flags.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/postgresql-server/files/pgsql.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/postgresql-server/files/pgsql.sh b/databases/postgresql-server/files/pgsql.sh index 78dcab34eaa..a4fe598d40d 100644 --- a/databases/postgresql-server/files/pgsql.sh +++ b/databases/postgresql-server/files/pgsql.sh @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: pgsql.sh,v 1.16 2002/10/19 21:02:53 jlam Exp $ +# $NetBSD: pgsql.sh,v 1.17 2002/10/19 21:32:46 jlam Exp $ # # PostgreSQL database rc.d control script # @@ -90,7 +90,7 @@ pgsql_doit() case ${action} in start|restart) if [ -n "${pgsql_flags}" ]; then - start_command_args="${start_command_args} -o \"${pgsql_flags}\"" + start_command_args="${start_command_args} -o \\\"${pgsql_flags}\\\"" fi command_args="${common_args} ${start_command_args} ${command_args}" ;; |