blob: 23132dde266d9305f8751125bc7c8e89b5f72259 (
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
|
#!/bin/sh
# PROVIDE: iaxmodem
# REQUIRE: DAEMON
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable iaxmodem:
#
# iaxmodem_enable="YES"
#
. /etc/rc.subr
name=iaxmodem
rcvar=iaxmodem_enable
command=%%PREFIX%%/sbin/iaxmodem
pidfile=${iaxmodem_pidfile:-"/var/run/iaxmodem.pid"}
iaxmodem_enable=${iaxmodem_enable:-"NO"}
load_rc_config $name
run_rc_command "$1"
|