formatting changes; individual return values are returned from the init script.
[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.5  2001/06/11 11:37:40  sarantis
40 #     Minor editing changes.
41 #
42 #     Revision 1.4  2001/06/09 09:14:11  swa
43 #     shamelessly adapted RPM stuff from the newest rpm that
44 #     RedHat provided for the JB.
45 #
46 #     Revision 1.3  2001/05/25 10:12:44  oes
47 #     Fixed default case in switch statement (# -> *)
48 #
49 #     Revision 1.2  2001/05/24 07:52:24  swa
50 #     added header. removed ^M.
51 #
52
53 # ********************************************************************/
54
55 # This is file /etc/rc.d/init.d/junkbuster and was put here 
56 # by the junkbuster rpm
57 #
58 # chkconfig: 235 84 09
59 #
60 # description: This shell script takes care of starting and stopping \
61 #             junkbuster.
62 #
63
64 # Source function library.
65 . /etc/rc.d/init.d/functions
66
67 . /etc/sysconfig/network
68
69 #  Check that networking is up.
70 [ ${NETWORKING} = "no" ] && exit 0
71 [ -f /usr/sbin/junkbuster ] || exit 0
72
73 [ -f /etc/junkbuster/config ] || exit 0
74
75 # See how we were called.
76
77 JB="/usr/sbin/junkbuster /etc/junkbuster/config & "
78 start () {
79         # start daemon
80         [ -f /var/lock/subsys/junkbuster ] && exit 0
81         echo -n $"Starting junkbuster: "
82         daemon --user junkbust '$JB' 
83         RETVAL=$?
84         echo
85         [ $RETVAL = 0 ] && touch /var/lock/subsys/junkbuster
86         return $RETVAL
87 }
88
89 stop () {
90         # stop daemon
91         echo -n $"Stopping junkbuster: "
92         killproc junkbuster && rm -f /var/lock/subsys/junkbuster
93         RETVAL=?$
94         echo
95         return $RETVAL
96 }
97
98 case "$1" in
99   start)
100         start   
101         ;;
102   stop)
103         stop    
104         ;;
105   reload|restart)
106         stop
107         start
108         RETVAL=$?
109         ;;
110   condrestart)
111         # restart only if already running
112         if [ -f /var/lock/subsys/junkbuster ] ; then
113                 stop
114                 start
115                 RETVAL=$?
116                 ;;
117         fi 
118         ;;
119   status)
120         status junkbuster
121         RETVAL=$?
122         ;;
123   *)
124         echo $"Usage: junkbuster {start|stop|reload|restart|condrestart|status}"
125         exit 1
126 esac
127
128 exit $RETVAL