New version of actions file editor templates
[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.1  2001/06/08 20:53:36  swa
37 #     use buildroot, export init to separate file (better manageability)
38 #
39 #
40
41 # ********************************************************************/
42 ### BEGIN INIT INFO
43 # Provides:       junkbuster ijb
44 # Required-Start: $network syslog
45 # Required-Stop:
46 # Default-Start:  3 5
47 # Default-Stop:
48 # Description:    Starts the Internet Junkbuster
49 ### END INIT INFO
50 . /etc/rc.config
51 base=\${0##*/}
52 link=\${base#*[SK][0-9][0-9]}
53 #test \$link = \$base && START_IJB=yes
54 #test "\$START_IJB" = "yes" || exit 0
55 return=$rc_done
56 case "$1" in
57     start)
58         echo -n "Starting The Internet Junkbuster"
59         su - nobody -c 'nohup /usr/sbin/junkbuster /etc/junkbuster/config < /dev/null > /dev/null &'
60         sleep 1
61         echo -e "$return"
62         ;;
63     stop)
64         echo -n "Shutting down The Internet Junkbuster"
65         killproc -TERM /usr/sbin/junkbuster || return=$rc_failed
66         echo -e "$return"
67         ;;
68     restart|reload)
69         $0 stop && $0 start || return=$rc_failed
70         ;;
71     status)
72         checkproc /usr/sbin/junkbuster && echo OK || echo No process
73         ;;
74     *)
75         echo "Usage: $0 {start|restart|status|stop}"
76         exit 1
77 esac
78 test "$return" = "$rc_done" || exit 1
79 exit 0