summaryrefslogtreecommitdiff
path: root/net/asterisk14/files/asterisk.sh.in
blob: ca5941068460680245c22beebb0a52c96094e25e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh

# PROVIDE: asterisk
# REQUIRE: DAEMON
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable asterisk:
#
# asterisk_enable="YES"
#

. /etc/rc.subr

stop_precmd=asterisk_shutdown
sig_stop=KILL
asterisk_shutdown () {
  %%PREFIX%%/sbin/asterisk -qrx 'stop now'
  sleep 1
  return 0
}

name=asterisk
rcvar=`set_rcvar`

command=%%PREFIX%%/sbin/asterisk

load_rc_config $name

pidfile=${asterisk_pidfile:-"/var/run/asterisk.pid"}

asterisk_enable=${asterisk_enable:-"NO"}

run_rc_command "$1"