From 39c19d79435170496682b96f7ef51ada186cc372 Mon Sep 17 00:00:00 2001 From: nico Date: Fri, 22 Jul 2005 23:07:18 +0000 Subject: add an initscript git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1536 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- openwrt/package/portmap/files/portmap.init | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 openwrt/package/portmap/files/portmap.init (limited to 'openwrt/package/portmap/files/portmap.init') diff --git a/openwrt/package/portmap/files/portmap.init b/openwrt/package/portmap/files/portmap.init new file mode 100644 index 000000000..e1ed89a60 --- /dev/null +++ b/openwrt/package/portmap/files/portmap.init @@ -0,0 +1,16 @@ +#!/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 $? -- cgit v1.2.3