]> gitweb.fluxo.info Git - slackbuilds.git/commitdiff
privoxy: added initscript
authorrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>
Wed, 13 Sep 2006 21:20:25 +0000 (21:20 +0000)
committerrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>
Wed, 13 Sep 2006 21:20:25 +0000 (21:20 +0000)
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@183 370017ae-e619-0410-ac65-c121f96126d4

privoxy/privoxy.SlackBuild
privoxy/rc.privoxy [new file with mode: 0755]

index 1fff6a81681d4b80f0086a9bddc50ef9c45e8c86..d02d2cf86e8ec85ce2b0bcb65d10b02414bfa8c2 100755 (executable)
@@ -110,6 +110,12 @@ for file in AUTHORS ChangeLog INSTALL LICENSE Makefile README; do
   cp $CWD/$file* usr/doc/$PACKAGE-$VERSION/
 done
 
+# install script
+echo '( chroot . /sbin/ldconfig )' > install/doinst.sh
+echo '( if ! grep -qe "^privoxy:" etc/group; then echo creating group privoxy... ; chroot . /usr/sbin/groupadd privoxy; fi )' >> install/doinst.sh
+echo '( if ! grep -qe "^privoxy:" etc/passwd; then echo creating user privoxy... ; chroot . /usr/sbin/useradd privoxy -g privoxy; fi )' >> install/doinst.sh
+echo '( if [ ! -f "etc/rc.d/rc.privoxy" ]; then mv etc/rc.d/rc.privoxy.new etc/rc.d/rc.privoxy; fi )' >> install/doinst.sh
+
 makepkg -c y -l y $REPOS/$PACKAGE-$VERSION-$ARCH-$BUILD.tgz
 
 if [ "$CLEANUP" == "yes" ]; then
diff --git a/privoxy/rc.privoxy b/privoxy/rc.privoxy
new file mode 100755 (executable)
index 0000000..f391d40
--- /dev/null
@@ -0,0 +1,105 @@
+#!/bin/sh
+#  ********************************************************************
+
+RETVAL=1
+
+PRIVOXY_PRG="privoxy"
+PRIVOXY_BIN="/usr/sbin/$PRIVOXY_PRG"
+PRIVOXY_CONF="/etc/privoxy/config"
+PRIVOXY_USER="privoxy"
+PRIVOXY_GROUP="privoxy"
+PRIVOXY_PID="/var/run/$PRIVOXY_PRG"/$PRIVOXY_PRG.pid
+
+declare -i check
+check=(`/bin/ps -e|/bin/grep $PRIVOXY_PRG|/usr/bin/wc -l`)
+
+# some checks for us
+if [ ! -x $PRIVOXY_BIN  ] ; then exit 0 ;fi
+if [ ! -f $PRIVOXY_CONF ] ; then exit 0 ;fi
+
+# See how we were called.
+
+PRIVOXY="$PRIVOXY_BIN $PRIVOXY_CONF"
+
+start () {
+       # start daemon
+       echo -n $"Starting $PRIVOXY_PRG: "
+
+       if [ ! -f $PRIVOXY_PID ]; then
+               ($PRIVOXY --user $PRIVOXY_USER.$PRIVOXY_GROUP --pidfile $PRIVOXY_PID -c $PRIVOXY_CONF 2>/dev/tty9 ) \
+                       && echo " OK" \
+                       && /bin/touch /var/lock/$PRIVOXY_PRG \
+                       && RETVAL=0
+       elif [ $check -lt 3 ]; then 
+               echo "Zombie lock file found"
+               /bin/rm -f /var/lock/$PRIVOXY_PRG $PRIVOXY_PID
+               echo "Retrying..."
+               start
+       else
+               echo "Already running"
+       fi
+       echo
+}
+
+stop () {
+       # stop daemon
+       echo -n $"Stopping $PRIVOXY_PRG: "
+       if [ -f $PRIVOXY_PID ]; then
+               /bin/kill `/bin/cat $PRIVOXY_PID` \
+                       && /bin/rm -f /var/lock/$PRIVOXY_PRG $PRIVOXY_PID \
+                       && echo " OK" \
+                       && RETVAL=0
+               echo
+       else
+               echo " Not Running"
+       fi
+}
+
+case "$1" in
+  start)
+       start   
+       ;;
+  stop)
+       stop    
+       ;;
+  reload)
+       if [ -f $PRIVOXY_PID ] ; then
+                /bin/kill -HUP `cat $PRIVOXY_PID` \
+                       && RETVAL=0
+        fi
+       ;;
+  restart)
+       stop 
+       start
+       ;;
+  kill)
+       echo "Kill all Privoxy"
+       /bin/rm -f /var/lock/$PRIVOXY_PRG $PRIVOXY_PID 
+       /bin/killall $PRIVOXY
+       ;;
+  condrestart)
+       # restart only if already running
+       if [ -f $PRIVOXY_PID ] ; then
+               stop
+               start
+       fi 
+       ;;
+  status)
+       /bin/ps ax|/bin/grep $PRIVOXY_PRG|/bin/grep -v 'grep\|init\.d\|rc\.d'
+       RETVAL=0
+       ;;
+  top)
+       if [ -f $PRIVOXY_PID ]; then
+                a=""
+                for i in `/sbin/pidof $PRIVOXY_PRG` ; do
+                        a="$a -p $i"
+                done
+                /usr/bin/top $a
+        fi
+       ;;
+  *)
+       echo $"Usage: $PRIVOXY_PRG {start|stop|reload|restart|condrestart|status|top|kill}"
+       exit 1
+esac
+
+exit $RETVAL