diff options
Diffstat (limited to 'network/privoxy/README')
-rw-r--r-- | network/privoxy/README | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/network/privoxy/README b/network/privoxy/README index 587259a77a..f1696bd9c7 100644 --- a/network/privoxy/README +++ b/network/privoxy/README @@ -12,4 +12,15 @@ a privoxy user and group. To do that, run the following commands: groupadd -g 206 privoxy useradd -u 206 -g 206 -c "Web Proxy" -d /dev/null -s /bin/false privoxy -See README.SLACKWARE for setup information. +To run privoxy at boot, the following code needs to +be added to /etc/rc.d/rc.local: + + if [ -x /etc/rc.d/rc.privoxy ]; then + /etc/rc.d/rc.privoxy start + fi + +Then add the following to /etc/rc.d/rc.local_shutdown: + + if [ -x /etc/rc.d/rc.privoxy ]; then + /etc/rc.d/rc.privoxy stop + fi |