blob: c9ceba75397fd8d4adabc2c4f2e2063598068601 (
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"
#
. %%RC_SUBR%%
name=iaxmodem
rcvar=`set_rcvar`
command=%%PREFIX%%/sbin/iaxmodem
pidfile=${iaxmodem_pidfile:-"/var/run/iaxmodem.pid"}
iaxmodem_enable=${iaxmodem_enable:-"NO"}
load_rc_config $name
run_rc_command "$1"
|