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