X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=privoxy-generic.init;h=ac5123443ebd501c5477c5770308ef6d91c89ec5;hp=aa3a5f2880c3d6a38bba34af1a57f39666c619a0;hb=83cb0eda63c10899384b9fcae21541923ac143be;hpb=b5c85be33de8c64ef021e1b30055ea6fe07142a0 diff --git a/privoxy-generic.init b/privoxy-generic.init index aa3a5f28..ac512344 100755 --- a/privoxy-generic.init +++ b/privoxy-generic.init @@ -1,8 +1,8 @@ -#!/bin/sh +#!/bin/sh # # ******************************************************************** # -# File : $Source: /cvsroot/ijbswa/current/privoxy.init,v $ +# File : $Source: /cvsroot/ijbswa/current/privoxy-generic.init,v $ # # Purpose : This shell script takes care of starting and stopping # privoxy. @@ -31,22 +31,57 @@ # http://www.gnu.org/copyleft/gpl.html # or write to the Free Software Foundation, Inc., 59 # Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# Revisions : -# $Log: privoxy-generic.init,v $ -# Revision 1.0 2002/09/05 17:14:32 hal9 +# +# Developer's NOTE: This script should be tested against a true /bin/sh, which +# has notable differences from bash. By design, this script does not try to do +# too much, so as to be as cross-platform as possible. # ####################################################################### # Is this needed by Solaris? #ident "@(#)privoxy 1.0 02/09/05" -PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin/:/usr/bin:/sbin:/bin -NAME=Privoxy -DAEMON=privoxy -P_CONF_FILE=/etc/${NAME}/config -PIDFILE=/var/run/${NAME}.pid -#RUN_AS="--user privoxy" +# NOTE: This script may require editing to ensure proper location of +# config file, and the privoxy executable. Care should be taken to ensure +# logfile is writable by $P_USER (logfile is defined in config), and that +# there is suitable write access for $P_PIDFILE. + +PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/xpg4/bin:/usr/bin:/sbin:/bin +P_NAME=Privoxy +# Path to executable. +P_DAEMON=privoxy +# Full path to location of Privoxy config file. +P_CONF_FILE=/usr/local/etc/privoxy/config +# Full path to PID file location. Location must be writable by +# whoever runs this script and by Privoxy itself. +P_PIDFILE=/var/run/privoxy.pid +# If uncommented, this script will try to run as USER=privoxy, which +# may require special handling of config, *.action, trust, logfile, +# jarfile, and pidfile. +P_USER=privoxy + +# If a privoxy user is specified, lets try that. /bin/sh does not seem to +# know about $UID. +if [ 0 = `id -u` ]; then + if [ -n "$P_USER" ]; then + id $P_USER 2>/dev/null >/dev/null + if [ $? -eq 0 ]; then + P_USER_SETTINGS="--user $P_USER" + else + echo "User $P_USER doesn't exist, exiting." + exit 1 + fi + else + # The user has sufficient rights, but $P_USER isn't set + echo "Running Privoxy as root is not recommended!" + P_USER_SETTINGS="" + fi +else + # The user has insufficient rights to run Privoxy as $P_USER + # and may not be able to write or delete the PID file. + echo "You aren't root, expect trouble!" + P_USER_SETTINGS="" +fi if [ ! -f $P_CONF_FILE ]; then echo "Can't find $P_CONF_FILE, exiting." @@ -56,11 +91,23 @@ fi case "$1" in start) - test -f $PIDFILE && echo "$PIDFILE exists, exiting." && exit 1 - echo -n "Starting $NAME: " - $DAEMON --pidfile $PIDFILE $RUN_AS $P_CONF_FILE 2>/dev/null &&\ - echo "OK." || echo "Failed." - + if [ -f $P_PIDFILE ]; then + if kill -0 `cat $P_PIDFILE`; then + echo "Error: $P_NAME is already running, exiting." + exit 1 + else + rm -f $P_PIDFILE + fi + fi + + $P_DAEMON --pidfile $P_PIDFILE $P_USER_SETTINGS $P_CONF_FILE 2>/dev/null + + if [ $? -eq 0 ]; then + echo "Starting $P_NAME, OK." + else + echo "Starting $P_NAME, Failed." + rm -f $P_PIDFILE + fi ;; restart) @@ -69,15 +116,16 @@ case "$1" in ;; stop) - echo -n "Stopping $NAME: " - kill `cat $PIDFILE` &&\ - echo "OK." || echo "Failed." + test ! -f $P_PIDFILE && echo "No $P_PIDFILE file found, exiting." && exit 1 + kill `cat $P_PIDFILE` && rm -f $P_PIDFILE && \ + echo "Stopping $P_NAME, OK." || echo "Stopping $P_NAME, failed." ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 ;; + esac exit 0