summaryrefslogtreecommitdiffstats
path: root/network/privoxy/README.SLACKWARE
blob: 0e1e7c0ef850d3fa7157732dc0a8be3bdf4deb1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
README.SLACKWARE for privoxy

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