diff options
author | Yen-Ming Lee <leeym@FreeBSD.org> | 2007-06-16 12:49:58 +0000 |
---|---|---|
committer | Yen-Ming Lee <leeym@FreeBSD.org> | 2007-06-16 12:49:58 +0000 |
commit | f4e93f459e1dc468d70583dfbdd4f865353a27fa (patch) | |
tree | 810ffcd0bb9d9551d606fe4ed63a06ade8955d19 /net/linuxigd/files/linuxigd.sh.sample | |
parent | - Update MASTER_SITE_FEDORA_LINUX (diff) |
- update to 1.0
- drop maintainership
Note: I myself no longer use linuxigd, and I don't have environment to
test it. Now it builds and runs, but not sure if it works.
Please test it by yourself.
Notes
Notes:
svn path=/head/; revision=193663
Diffstat (limited to 'net/linuxigd/files/linuxigd.sh.sample')
-rw-r--r-- | net/linuxigd/files/linuxigd.sh.sample | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/net/linuxigd/files/linuxigd.sh.sample b/net/linuxigd/files/linuxigd.sh.sample deleted file mode 100644 index 280bb66cf6ac..000000000000 --- a/net/linuxigd/files/linuxigd.sh.sample +++ /dev/null @@ -1,25 +0,0 @@ -#!/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 |