X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=junkbuster.init;h=3790d24c65b6dd32121434d4257d0cc1c52e8e9a;hp=f35001a887febf630f87735d1c613e60f2dc22ee;hb=9e28a91f9f178325db29c3062f9cbaeaeeef0460;hpb=f7a0005dc243374b42190d0225c97f102865e1b6 diff --git a/junkbuster.init b/junkbuster.init index f35001a8..3790d24c 100644 --- a/junkbuster.init +++ b/junkbuster.init @@ -5,9 +5,6 @@ # # Purpose : This shell script takes care of starting and stopping # junkbuster. -# This works only correctly if the user `nobody' is allowed -# to be in the directory where this file is called -# (for example: /root is NOT ok) # # Copyright : Written by and Copyright (C) 2001 the SourceForge # IJBSWA team. http://ijbswa.sourceforge.net @@ -36,6 +33,13 @@ # # Revisions : # $Log: junkbuster.init,v $ +# Revision 1.9 2001/09/15 01:53:12 steudten +# +# Remove test for subsys flag in start. Some minor changes. +# +# Revision 1.8 2001/06/28 13:50:36 sarantis +# swap ?$ with $?; remove bogus ";;" +# # Revision 1.7 2001/06/28 13:40:26 sarantis # remove single quotes from $JB; it was not expanded. # @@ -74,28 +78,34 @@ # Check that networking is up. [ ${NETWORKING} = "no" ] && exit 0 -[ -f /usr/sbin/junkbuster ] || exit 0 -[ -f /etc/junkbuster/config ] || exit 0 +JB_PRG="junkbuster" +JB_BIN="/usr/sbin/$JB_PRG" +JB_CONF="/etc/$JB_PRG/config" +JB_USER="junkbuster" + +# some checks for us +[ -x $JB_BIN ] || exit 0 +[ -f $JB_CONF ] || exit 0 # See how we were called. -JB="/usr/sbin/junkbuster /etc/junkbuster/config & " +JB="$JB_BIN $JB_CONF" + start () { # start daemon - [ -f /var/lock/subsys/junkbuster ] && exit 0 - echo -n $"Starting junkbuster: " - daemon --user junkbust $JB + echo -n $"Starting $JB_PRG: " + daemon --user $JB_USER $JB RETVAL=$? echo - [ $RETVAL = 0 ] && touch /var/lock/subsys/junkbuster + [ $RETVAL = 0 ] && touch /var/lock/subsys/$JB_PRG return $RETVAL } stop () { # stop daemon - echo -n $"Stopping junkbuster: " - killproc junkbuster && rm -f /var/lock/subsys/junkbuster + echo -n $"Stopping $JB_PRG: " + killproc $JB_PRG && rm -f /var/lock/subsys/$JB_PRG RETVAL=$? echo return $RETVAL @@ -115,18 +125,18 @@ case "$1" in ;; condrestart) # restart only if already running - if [ -f /var/lock/subsys/junkbuster ] ; then + if [ -f /var/lock/subsys/$JB_PRG ] ; then stop start RETVAL=$? fi ;; status) - status junkbuster + status $JB_PRG RETVAL=$? ;; *) - echo $"Usage: junkbuster {start|stop|reload|restart|condrestart|status}" + echo $"Usage: $JB_PRG {start|stop|reload|restart|condrestart|status}" exit 1 esac