diff options
Diffstat (limited to 'network/privoxy/README')
-rw-r--r-- | network/privoxy/README | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/network/privoxy/README b/network/privoxy/README index 28c86916a1..3264d54e02 100644 --- a/network/privoxy/README +++ b/network/privoxy/README @@ -9,19 +9,11 @@ networks. Before executing the script, you will need to create a privoxy user and group. To do that, run the following commands: - /usr/sbin/groupadd -g 206 privoxy - - /usr/sbin/useradd -u 206 -g 206 -c "Web Proxy" \ - -d /dev/null -s /bin/false privoxy - -(please note that the \ is just to split the command up, the whole -'useradd' is one line) +groupadd -g 206 privoxy +useradd -u 206 -g 206 -c "Web Proxy" -d /dev/null -s /bin/false 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 - - + if [ -x /etc/rc.d/rc.privoxy ]; then + /etc/rc.d/rc.privoxy start + fi |