ports/net/freeswitch-core/files/freeswitch.in
Doug Barton 83eb2c3700 In the rc.d scripts, change assignments to rcvar to use the
literal name_enable wherever possible, and ${name}_enable
when it's not, to prepare for the demise of set_rcvar().

In cases where I had to hand-edit unusual instances also
modify formatting slightly to be more uniform (and in
some cases, correct). This includes adding some $FreeBSD$
tags, and most importantly moving rcvar= to right after
name= so it's clear that one is derived from the other.
2012-01-14 08:57:23 +00:00

45 lines
902 B
Bash

#!/bin/sh
# PROVIDE: freeswitch
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable freeswitch:
#
# freeswitch_enable="YES"
#
#
# freeswitch_user="freeswitch"
# freeswitch_group="freeswitch"
. /etc/rc.subr
name=freeswitch
rcvar=freeswitch_enable
load_rc_config $name
: ${freeswitch_enable="NO"}
: ${freeswitch_user="freeswitch"}
: ${freeswitch_group="freeswitch"}
: ${freeswitch_flags="-nc -waste"}
command=%%PREFIX%%/bin/freeswitch
command_args="-u ${freeswitch_user} -g ${freeswitch_group}"
pidfile=${freeswitch_pidfile:-"/var/run/freeswitch/freeswitch.pid"}
start_precmd="${name}_prestart"
stop_cmd="${name}_stop"
freeswitch_stop () {
echo "Stopping FreeSWITCH."
%%PREFIX%%/bin/freeswitch -stop
wait_for_pids `cat $pidfile`
}
freeswitch_prestart () {
install -d -o ${freeswitch_user} -m755 /var/run/${name}
}
run_rc_command "$1"