28d920b77498f93f8b17a347b8145b2ee7a3a99a
[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.5  2002/03/08 21:39:59  oes
37 #     setgid to nogroup
38 #
39 #     Revision 1.4  2002/03/05 19:54:37  oes
40 #     Preliminary version of SuSE 8.0-certified init script ,-)
41 #
42 #     Revision 1.3  2002/03/05 05:28:05  oes
43 #     Added pidfile creation
44 #
45 #     Revision 1.2  2001/09/10 16:25:46  swa
46 #     jb did not start. none of the arguments worked. fixed.
47 #
48 #     Revision 1.1  2001/06/08 20:53:36  swa
49 #     use buildroot, export init to separate file (better manageability)
50 #
51 #
52
53 # ********************************************************************/
54 ### BEGIN INIT INFO
55 # Provides:       junkbuster ijb
56 # Required-Start: $network $syslog $remote_fs
57 # Required-Stop:
58 # Default-Start:  3 5
59 # Default-Stop:   0 1 2 6
60 # Description:    Starts the Internet Junkbuster
61 ### END INIT INFO
62
63 . /etc/rc.config
64 rc_reset  
65
66 case "$1" in
67     start)
68         echo -n "Starting The Internet Junkbuster"
69         if [ ! -f /var/run/junkbuster.pid ] || ! kill -0 `cat /var/run/junkbuster.pid` 2> /dev/null; then
70            /usr/sbin/junkbuster --user junkbuster.junkbuster --pidfile /var/run/junkbuster.pid /etc/junkbuster/config 2> /dev/null
71
72 # SuSE: Ist der else-Teil nötig?
73
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     restart)
90         $0 stop && $0 start
91         rc_status
92         ;;
93     status)
94         echo -n "Checking for The Internet Junkbuster"
95         checkproc /usr/sbin/junkbuster
96         rc_status -v
97         ;;
98     *)
99         echo "Usage: $0 {start|restart|reload|status|stop}"
100         exit 1
101 esac
102
103 # SuSE: Kann das so ersetzt werden?
104
105 #test "$return" = "$rc_done" || exit 1
106 #exit 0
107
108 rc_exit