3248e2af3b
This fixes PR pkg/45357. Bump PKGREVISION.
24 lines
504 B
Bash
24 lines
504 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# PROVIDE: prosody
|
|
# REQUIRE: DAEMON
|
|
|
|
if [ -f /etc/rc.subr ]; then
|
|
. /etc/rc.subr
|
|
fi
|
|
|
|
name="prosody"
|
|
rcvar=${name}
|
|
ctl_command="@PREFIX@/bin/${name}ctl"
|
|
required_files="@PKG_SYSCONFDIR@/${name}.cfg.lua"
|
|
pidfile="@VARBASE@/run/${name}.pid"
|
|
#start_precmd="ulimit -n 2048"
|
|
extra_commands="reload status"
|
|
|
|
start_cmd="${ctl_command} start"
|
|
stop_cmd="${ctl_command} stop"
|
|
reload_cmd="${ctl_command} reload"
|
|
status_cmd="${ctl_command} status"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|