diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-12-18 15:24:18 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-12-18 15:24:18 +0000 |
commit | 7f10da01013de27a36dd32a108fd92ed955c6880 (patch) | |
tree | 017919e3f7654dfe32eccc2a8f925a10307f07ce /openwrt/package/peerguardian/files | |
parent | d0d303b6e3f7b55b160d03537ff01be6ca3aae2f (diff) |
Added peerguardian
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2724 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/peerguardian/files')
-rw-r--r-- | openwrt/package/peerguardian/files/peerguardian.init | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/openwrt/package/peerguardian/files/peerguardian.init b/openwrt/package/peerguardian/files/peerguardian.init new file mode 100644 index 0000000000..5807314c87 --- /dev/null +++ b/openwrt/package/peerguardian/files/peerguardian.init @@ -0,0 +1,21 @@ +#!/bin/sh + +BIN=pgtext +DEFAULT=/etc/default/$BIN +[ -f $DEFAULT ] && . $DEFAULT +RUN_D=/var/run +PID_F=$RUN_D/$BIN_${IF}_${ID}.pid + +case $1 in + start) + $BIN $OPTIONS + ;; + stop) + [ -f $PID_F ] && kill $(cat $PID_F) >/dev/null 2>&1 + ;; + *) + echo "usage: $0 (start|stop)" + exit 1 +esac + +exit $? |