mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
83eb2c3700
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.
44 lines
689 B
Bash
44 lines
689 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 -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"
|