9dbc438e7f
Submitted by: Andrey Chernov Feature safe: yes
34 lines
691 B
Bash
34 lines
691 B
Bash
#!/bin/sh
|
|
# PROVIDE: miniupnpc
|
|
# REQUIRE: NETWORKING SERVERS DAEMON ldconfig resolv
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
# Add the following lines to /etc/rc.conf to enable miniupnpc
|
|
# miniupnpc_enable="YES"
|
|
# miniupnpc_config="port protocol [port2 protocol2] [...]"
|
|
|
|
name="miniupnpc"
|
|
rcvar=miniupnpc_enable
|
|
|
|
load_rc_config $name
|
|
|
|
miniupnpc_enable=${miniupnpc_enable:-"NO"}
|
|
|
|
command="%%PREFIX%%/bin/upnpc"
|
|
start_cmd="miniupnpc_start"
|
|
stop_cmd="miniupnpc_stop"
|
|
|
|
miniupnpc_start() {
|
|
eval "${command} -r ${miniupnpc_config} | grep duration"
|
|
}
|
|
|
|
miniupnpc_stop() {
|
|
echo "Remove redirections" ${miniupnpc_config}
|
|
eval ${command} -d ${miniupnpc_config} > /dev/null
|
|
}
|
|
|
|
run_rc_command "$1"
|
|
|
|
# eof
|