diff options
Diffstat (limited to 'databases/postgresql73-server/files/pgsql.sh.tmpl')
-rw-r--r-- | databases/postgresql73-server/files/pgsql.sh.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/postgresql73-server/files/pgsql.sh.tmpl b/databases/postgresql73-server/files/pgsql.sh.tmpl index 8d975d54303c..2f7554620e89 100644 --- a/databases/postgresql73-server/files/pgsql.sh.tmpl +++ b/databases/postgresql73-server/files/pgsql.sh.tmpl @@ -35,7 +35,7 @@ postgresql_class=${postgresql_class:-"default"} name=postgresql rcvar=`set_rcvar` command=${prefix}/bin/pg_ctl -command_args="-D ${postgresql_data} ${postgresql_flags} $1" +command_args="-D ${postgresql_data} ${postgresql_flags}" extra_commands="reload initdb" start_cmd="postgresql_command start" @@ -48,7 +48,7 @@ initdb_cmd="postgresql_initdb" postgresql_command() { - su -l ${postgresql_user} -c "exec ${command} ${command_args}" + su -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}" } postgresql_initdb() |