From 219a6dab8995aad9ac4860cc1a84d6f3509a03a4 Mon Sep 17 00:00:00 2001 From: wbx Date: Sun, 17 May 2009 14:41:34 +0200 Subject: Initial import --- package/portmap/files/portmap.init | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 package/portmap/files/portmap.init (limited to 'package/portmap/files') diff --git a/package/portmap/files/portmap.init b/package/portmap/files/portmap.init new file mode 100644 index 000000000..19e54ee77 --- /dev/null +++ b/package/portmap/files/portmap.init @@ -0,0 +1,27 @@ +#!/bin/sh +#FWINIT 60 +. /etc/rc.conf + +case $1 in +autostop) ;; +autostart) + test x"${portmap:-NO}" = x"NO" && exit 0 + exec sh $0 start + ;; +start) + mkdir -p /tmp/.portmap + portmap -t /tmp/.portmap + ;; +stop) + kill $(pidof portmap|cut -d ' ' -f 3) + ;; +restart) + sh $0 stop + sh $0 start + ;; +*) + echo "Usage: $0 {start | stop | restart}" + exit 1 + ;; +esac +exit $? -- cgit v1.2.3