mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-25 10:03:03 +01:00
16 lines
324 B
Text
16 lines
324 B
Text
|
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
|
||
|
|