aboutsummaryrefslogtreecommitdiffstats
path: root/openwrt/package/portmap/files/portmap.init
diff options
context:
space:
mode:
Diffstat (limited to 'openwrt/package/portmap/files/portmap.init')
-rw-r--r--openwrt/package/portmap/files/portmap.init16
1 files changed, 0 insertions, 16 deletions
diff --git a/openwrt/package/portmap/files/portmap.init b/openwrt/package/portmap/files/portmap.init
deleted file mode 100644
index 31a3399e93..0000000000
--- a/openwrt/package/portmap/files/portmap.init
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-BIN=portmap
-DEFAULT=/etc/default/$BIN
-[ -f $DEFAULT ] && . $DEFAULT
-
-case $1 in
- start)
- $BIN $OPTIONS
- ;;
- *)
- echo "usage: $0 start"
- exit 1
-esac
-
-exit $?