packages/net/privoxy/files/privoxy.init

12 lines
164 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
conf=/etc/privoxy/config
start() {
/usr/sbin/privoxy $conf
}
stop() {
killall privoxy
}