mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
0457f174a1
- update net/asterisk11 to 11.3.0 - add -F to command_args in the rc script, this ensures that asterisk detaches from the controlling terminal. It was possible for the asterisk rc script to prevent a box from reaching full multiuser if e.g. -v was passed to command_args. [1] Reported by: Kurt Lidl <lidl@pix.net>
44 lines
692 B
Bash
44 lines
692 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: asterisk
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable asterisk:
|
|
#
|
|
# asterisk_enable="YES"
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=asterisk
|
|
rcvar=asterisk_enable
|
|
|
|
extra_commands="reload"
|
|
|
|
stop_cmd="asterisk_stop"
|
|
reload_cmd="asterisk_reload"
|
|
|
|
command="%%PREFIX%%/sbin/asterisk"
|
|
command_args="-n -F -U %%ASTERISK_USER%%"
|
|
pidfile=${asterisk_pidfile:-"/var/run/asterisk/asterisk.pid"}
|
|
|
|
asterisk_stop() {
|
|
echo 'Stopping asterisk'
|
|
$command -nqrx 'core stop now'
|
|
}
|
|
|
|
asterisk_reload() {
|
|
echo 'Reloading asterisk'
|
|
$command -nqrx 'reload'
|
|
}
|
|
|
|
load_rc_config $name
|
|
|
|
asterisk_enable=${asterisk_enable:-"NO"}
|
|
|
|
run_rc_command "$1"
|