packages/net/tinyproxy/files/tinyproxy.init
florian aba323b7ae Port tinyproxy to -ng, use the new rc.common stuff
git-svn-id: svn://svn.openwrt.org/openwrt/packages@4950 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-10-07 16:37:39 +00:00

18 lines
281 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
BIN=tinyproxy
DEFAULT=/etc/default/$BIN
RUN_D=/var/run
PID_F=$RUN_D/$BIN.pid
[ -f $DEFAULT ] && . $DEFAULT
start() {
mkdir -p $RUN_D
$BIN $OPTIONS
}
stop() {
[ -f $PID_F ] && kill $(cat $PID_F)
}