mirror of
https://git.freebsd.org/ports.git
synced 2025-07-07 12:29:16 -04:00
an IAX channel (commonly provided by an Asterisk PBX system) instead of a traditional phone line and uses a DSP library instead of DSP hardware chipsets. WWW: http://sourceforge.net/projects/iaxmodem PR: ports/99238 Submitted by: Filippo Natali <filippo.natali@gmail.com>
25 lines
382 B
Bash
25 lines
382 B
Bash
#!/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"
|