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