7506374126
add support to select login class for running postgresql [2]. The new startup script, using rc.subr, is now installed for all versions of postgresql. Bump portrevisions, since startup script is modified. PR: 78630 [1] Submitted by: Vivek Khera [1] Submitted by: Brian B. [2] Approved by: seanc (implicit)
59 lines
1.4 KiB
Bash
59 lines
1.4 KiB
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: postgresql
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: FreeBSD shutdown
|
|
#
|
|
# Add the following line to /etc/rc.conf to enable PostgreSQL:
|
|
#
|
|
# postgresql_enable="YES"
|
|
# # optional
|
|
# postgresql_data="%%PREFIX%%/pgsql/data"
|
|
# postgresql_flags="-w -s -m fast"
|
|
#
|
|
# This scripts takes one of the following commands:
|
|
#
|
|
# start stop restart reload status initdb
|
|
#
|
|
# For postmaster startup options, edit ${postgresql_data}/postgresql.conf
|
|
|
|
prefix=%%PREFIX%%
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
load_rc_config postgresql
|
|
|
|
# set defaults
|
|
postgresql_enable=${postgresql_enable:-"NO"}
|
|
postgresql_flags=${postgresql_flags:-"-w -s -m fast"}
|
|
postgresql_user=pgsql
|
|
eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data"}
|
|
postgresql_class=${postgresql_class:-"default"}
|
|
|
|
name=postgresql
|
|
rcvar=`set_rcvar`
|
|
command=${prefix}/bin/pg_ctl
|
|
command_args="-D ${postgresql_data} ${postgresql_flags} $1"
|
|
extra_commands="reload initdb"
|
|
|
|
start_cmd="postgresql_command start"
|
|
stop_cmd="postgresql_command stop"
|
|
restart_cmd="postgresql_command restart"
|
|
reload_cmd="postgresql_command reload"
|
|
status_cmd="postgresql_command status"
|
|
|
|
initdb_cmd="postgresql_initdb"
|
|
|
|
postgresql_command()
|
|
{
|
|
su -l ${postgresql_user} -c "exec ${command} ${command_args}"
|
|
}
|
|
|
|
postgresql_initdb()
|
|
{
|
|
su -l -c ${postgresql_class} ${postgresql_user} -c "exec ${prefix}/bin/initdb -D ${postgresql_data}"
|
|
}
|
|
|
|
run_rc_command "$1"
|