diff options
author | jlam <jlam> | 2002-10-19 21:32:46 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-10-19 21:32:46 +0000 |
commit | 740bab2707c3a9ec704cf671ea63334696a0feb8 (patch) | |
tree | 0457408564830d1b7f15788ac6f271732409431a | |
parent | 1c0652ca4a670717e747958967d8b452324ff1ed (diff) | |
download | pkgsrc-740bab2707c3a9ec704cf671ea63334696a0feb8.tar.gz |
Forgot to fix quoting for pgsql_flags.
-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}" ;; |