moved to obsolete. use ChangeLog instead
[privoxy.git] / junkbuster.init.suse
1 #! /bin/sh
2 #  ********************************************************************
3
4 #  File        :  $Source: /cvsroot/ijbswa/current/junkbuster.init.suse,v $
5
6 #  Purpose     :  This shell script takes care of starting and stopping
7 #                 junkbuster.
8
9 #  Copyright   :  Written by and Copyright (C) 2001 the SourceForge
10 #                 IJBSWA team.  http://ijbswa.sourceforge.net
11
12 #                 Based on the Internet Junkbuster originally written
13 #                 by and Copyright (C) 1997 Anonymous Coders and
14 #                 Junkbusters Corporation.  http://www.junkbusters.com
15
16 #                 This program is free software; you can redistribute it
17 #                 and/or modify it under the terms of the GNU General
18 #                 Public License as published by the Free Software
19 #                 Foundation; either version 2 of the License, or (at
20 #                 your option) any later version.
21
22 #                 This program is distributed in the hope that it will
23 #                 be useful, but WITHOUT ANY WARRANTY; without even the
24 #                 implied warranty of MERCHANTABILITY or FITNESS FOR A
25 #                 PARTICULAR PURPOSE.  See the GNU General Public
26 #                 License for more details.
27
28 #                 The GNU General Public License should be included with
29 #                 this file.  If not, you can view it at
30 #                 http://www.gnu.org/copyleft/gpl.html
31 #                 or write to the Free Software Foundation, Inc., 59
32 #                 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
33
34 #  Revisions   :
35 #     $Log: junkbuster.init.suse,v $
36 #     Revision 1.6  2002/03/09 14:56:34  swa
37 #     wrong user.group
38 #
39 #     Revision 1.5  2002/03/08 21:39:59  oes
40 #     setgid to nogroup
41 #
42 #     Revision 1.4  2002/03/05 19:54:37  oes
43 #     Preliminary version of SuSE 8.0-certified init script ,-)
44 #
45 #     Revision 1.3  2002/03/05 05:28:05  oes
46 #     Added pidfile creation
47 #
48 #     Revision 1.2  2001/09/10 16:25:46  swa
49 #     jb did not start. none of the arguments worked. fixed.
50 #
51 #     Revision 1.1  2001/06/08 20:53:36  swa
52 #     use buildroot, export init to separate file (better manageability)
53 #
54 #
55
56 # ********************************************************************/
57 ### BEGIN INIT INFO
58 # Provides:       junkbuster ijb
59 # Required-Start: $network $syslog $remote_fs
60 # Required-Stop:
61 # Default-Start:  3 5
62 # Default-Stop:   0 1 2 6
63 # Description:    Starts the Internet Junkbuster
64 ### END INIT INFO
65
66 . /etc/rc.config
67 rc_reset  
68
69 case "$1" in
70     start)
71         echo -n "Starting The Internet Junkbuster"
72         if [ ! -f /var/run/junkbuster.pid ] || ! kill -0 `cat /var/run/junkbuster.pid` 2> /dev/null; then
73            /usr/sbin/junkbuster --user junkbuster.junkbuster --pidfile /var/run/junkbuster.pid /etc/junkbuster/config 2> /dev/null
74         else     
75            false 
76         fi
77         rc_status -v
78         ;;
79     stop)
80         echo -n "Shutting down The Internet Junkbuster"
81         killproc -TERM /usr/sbin/junkbuster && rm -f /var/run/junkbuster.pid
82         rc_status -v
83         ;;
84     reload)
85         echo -n "Reloading The Internet Junkbuster"
86         kill -HUP `cat /var/run/junkbuster.pid`
87         rc_status -v
88         ;;
89     try-restart)
90         $0 stop && $0 start
91         rc_status
92         ;;
93     restart)
94         $0 stop
95         $0 start
96         rc_status
97         ;;           
98     status)
99         echo -n "Checking for The Internet Junkbuster"
100         checkproc /usr/sbin/junkbuster
101         rc_status -v
102         ;;
103     *)
104         echo "Usage: $0 {start|restart|reload|status|stop}"
105         exit 1
106 esac
107
108 rc_exit