summaryrefslogtreecommitdiff
path: root/net/linuxigd/files/linuxigd.sh.sample
blob: 280bb66cf6acb8d9bb6d207e53e4576efa3ff504 (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

EXT_IF=fxp0	# external interface
INT_IF=fxp1	# internal interface

if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
    echo "$0: Cannot determine the PREFIX" >&2
    exit 1
fi

case "$1" in
start)
	if [ -x ${PREFIX}/bin/upnpd ]; then
		${PREFIX}/bin/upnpd ${EXT_IF} ${INT_IF} && echo -n ' upnpd'
	fi
	;;
stop)
	killall upnpd && echo -n ' upnpd'
	;;
*)
	echo "Usage: `basename $0` {start|stop}" >&2
	;;
esac

exit 0