2 # ********************************************************************
4 # File : $Source: /cvsroot/ijbswa/current/junkbuster.init,v $
6 # Purpose : This shell script takes care of starting and stopping
9 # Copyright : Written by and Copyright (C) 2001 the SourceForge
10 # IJBSWA team. http://ijbswa.sourceforge.net
12 # Based on the Internet Junkbuster originally written
13 # by and Copyright (C) 1997 Anonymous Coders and
14 # Junkbusters Corporation. http://www.junkbusters.com
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.
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.
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.
35 # $Log: junkbuster.init,v $
36 # Revision 1.10 2001/11/05 21:30:23 steudten
37 # Make JB startup without & due to be a 'real' daemon right now.
38 # Make the script easy to change.
40 # Revision 1.9 2001/09/15 01:53:12 steudten
42 # Remove test for subsys flag in start. Some minor changes.
44 # Revision 1.8 2001/06/28 13:50:36 sarantis
45 # swap ?$ with $?; remove bogus ";;"
47 # Revision 1.7 2001/06/28 13:40:26 sarantis
48 # remove single quotes from $JB; it was not expanded.
50 # Revision 1.6 2001/06/28 13:38:42 sarantis
51 # formatting changes; individual return values are returned from the init script.
53 # Revision 1.5 2001/06/11 11:37:40 sarantis
54 # Minor editing changes.
56 # Revision 1.4 2001/06/09 09:14:11 swa
57 # shamelessly adapted RPM stuff from the newest rpm that
58 # RedHat provided for the JB.
60 # Revision 1.3 2001/05/25 10:12:44 oes
61 # Fixed default case in switch statement (# -> *)
63 # Revision 1.2 2001/05/24 07:52:24 swa
64 # added header. removed ^M.
67 # ********************************************************************/
69 # This is file /etc/rc.d/init.d/junkbuster and was put here
70 # by the junkbuster rpm
72 # chkconfig: 235 84 09
74 # description: This shell script takes care of starting and stopping \
79 # Source function library.
80 . /etc/rc.d/init.d/functions
82 . /etc/sysconfig/network
84 # Check that networking is up.
85 [ ${NETWORKING} = "no" ] && exit 0
88 JB_BIN="/usr/sbin/$JB_PRG"
89 JB_CONF="/etc/$JB_PRG/config"
91 JB_PID="/etc/junkbuster"/$JB_PRG.pid
94 [ -x $JB_BIN ] || exit 0
95 [ -f $JB_CONF ] || exit 0
97 # See how we were called.
103 echo -n $"Starting $JB_PRG: "
104 daemon --user $JB_USER $JB
107 [ $RETVAL = 0 ] && touch /var/lock/subsys/$JB_PRG
113 echo -n $"Stopping $JB_PRG: "
114 killproc $JB_PRG && rm -f /var/lock/subsys/$JB_PRG $JB_PID
128 if [ -f $JB_PID ] ; then
129 kill -HUP `cat $JB_PID`
139 # restart only if already running
140 if [ -f $JB_PID ] ; then
151 if [ -f $JB_PID ]; then
153 for i in `pidof $JB_PRG` ; do
160 echo $"Usage: $JB_PRG {start|stop|reload|restart|condrestart|status|top}"