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