docs should have an author.
[privoxy.git] / junkbuster.init
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 #                 This works only correctly if the user `nobody' is allowed
9 #                 to be in the directory where this file is called 
10 #                 (for example: /root is NOT ok)
11
12 #  Copyright   :  Written by and Copyright (C) 2001 the SourceForge
13 #                 IJBSWA team.  http://ijbswa.sourceforge.net
14
15 #                 Based on the Internet Junkbuster originally written
16 #                 by and Copyright (C) 1997 Anonymous Coders and
17 #                 Junkbusters Corporation.  http://www.junkbusters.com
18
19 #                 This program is free software; you can redistribute it
20 #                 and/or modify it under the terms of the GNU General
21 #                 Public License as published by the Free Software
22 #                 Foundation; either version 2 of the License, or (at
23 #                 your option) any later version.
24
25 #                 This program is distributed in the hope that it will
26 #                 be useful, but WITHOUT ANY WARRANTY; without even the
27 #                 implied warranty of MERCHANTABILITY or FITNESS FOR A
28 #                 PARTICULAR PURPOSE.  See the GNU General Public
29 #                 License for more details.
30
31 #                 The GNU General Public License should be included with
32 #                 this file.  If not, you can view it at
33 #                 http://www.gnu.org/copyleft/gpl.html
34 #                 or write to the Free Software Foundation, Inc., 59
35 #                 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
36
37 #  Revisions   :
38 #     $Log: junkbuster.init,v $
39 #     Revision 1.4  2001/06/09 09:14:11  swa
40 #     shamelessly adapted RPM stuff from the newest rpm that
41 #     RedHat provided for the JB.
42 #
43 #     Revision 1.3  2001/05/25 10:12:44  oes
44 #     Fixed default case in switch statement (# -> *)
45 #
46 #     Revision 1.2  2001/05/24 07:52:24  swa
47 #     added header. removed ^M.
48 #
49
50 # ********************************************************************/
51
52 # This is file /etc/rc.d/init.d/junkbuster and was put here 
53 # by the junkbuster rpm
54 #
55 # chkconfig: 235 84 09
56 #
57 # description: This shell script takes care of starting and stopping \
58 #             junkbuster.
59 #
60
61 # Source function library.
62 . /etc/rc.d/init.d/functions
63
64 . /etc/sysconfig/network
65
66 #  Check that networking is up.
67 [ ${NETWORKING} = "no" ] && exit 0
68 [ -f /usr/sbin/junkbuster ] || exit 0
69
70 [ -f /etc/junkbuster/config ] || exit 0
71
72 # See how we were called.
73
74 JB="/usr/sbin/junkbuster /etc/junkbuster/config & "
75 start () {
76         # start daemon
77         [ -f /var/lock/subsys/junkbuster ] && exit 0
78         echo -n $"Starting junkbuster: "
79         daemon --user junkbust '$JB' 
80         RETVAL=$?
81         echo
82         [ $RETVAL = 0 ] && touch /var/lock/subsys/junkbuster
83         return $RETVAL
84 }
85
86 stop () {
87         # stop daemon
88         echo -n $"Stopping junkbuster: "
89         killproc junkbuster && rm -f /var/lock/subsys/junkbuster
90         RETVAL=?$
91         echo
92         return $RETVAL
93 }
94
95 case "$1" in
96 start)
97         start   
98         ;;
99 stop)
100         stop    
101         ;;
102 restart)
103         stop
104         start
105         ;;
106 condrestart)
107         [ -f /var/lock/subsys/junkbuster ] && restart || : 
108         ;;
109 status)
110         status junkbuster
111         ;;
112 *)
113         echo $"Usage: junkbuster {start|stop|restart|condrestart|status}"
114         exit 1
115 esac
116
117 exit 0