[packages] privoxy: move privoxy startup to later in boot process
[openwrt/svn-archive/archive.git] / net / privoxy / files / privoxy.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006-2011 OpenWrt.org
3
4 START=80
5 STOP=80
6
7 SERVICE_USE_PID=1
8
9 start() {
10 service_start /usr/sbin/privoxy --pidfile /var/run/privoxy.pid \
11 /etc/privoxy/config
12 }
13
14 stop() {
15 service_stop /usr/sbin/privoxy
16 }