diff options
author | Kyle Guinn <elyk03@gmail.com> | 2014-12-18 00:16:27 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-12-20 07:16:02 +0700 |
commit | c09c72863984809d4e35eeaa6e43a545ab41c8d0 (patch) | |
tree | f679612eb3a4cd01386ce0996b939834dd66d050 /network/privoxy/README | |
parent | c0bc85aaa7f714b702ea4265a257dbc615d3d8d3 (diff) |
network/privoxy: Updated for version 3.0.22.
Signed-off-by: Kyle Guinn <elyk03@gmail.com>
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 587259a77a749..f1696bd9c74e9 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 |