do not use radwatch (it's deprecated)
[freeradius.git] / redhat / rc.radiusd-redhat
1 #!/bin/sh
2 #
3 # chkconfig: 345 88 10
4 # description: Start/Stop the RADIUS server daemon
5 #
6 #    This program is free software; you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation; either version 2 of the License, or
9 #    (at your option) any later version.
10 #
11 #    This program is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with this program; if not, write to the Free Software
18 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 #
20 #    Copyright (C) 2001 The FreeRADIUS Project   http://www.freeradius.org
21 #
22
23 # Source function library.
24 . /etc/rc.d/init.d/functions
25
26 RADIUSD=/usr/sbin/radiusd
27 LOCKF=/var/lock/subsys/radiusd
28 CONFIG=/etc/raddb/radiusd.conf
29
30 [ -f $RADIUSD ] || exit 0
31 [ -f $CONFIG ] || exit 0
32
33 RETVAL=0
34
35 case "$1" in
36   start)
37         echo -n $"Starting RADIUS server: "
38         daemon $RADIUSD -y
39         RETVAL=$?
40         echo
41         [ $RETVAL -eq 0 ] && touch $LOCKF
42         ;;
43   stop)
44         echo -n $"Stopping RADIUS server: "
45         killproc $RADIUSD
46         RETVAL=$?
47         echo
48         [ $RETVAL -eq 0 ] && rm -f $LOCKF
49         ;;
50   status)
51         status radiusd
52         RETVAL=$?
53         ;;
54   reload|restart)
55         $0 stop
56         sleep 3
57         $0 start
58         RETVAL=$?
59         ;;
60   condrestart)
61         if [ -f $LOCKF ]; then
62                 $0 stop
63                 sleep 3
64                 $0 start
65                 RETVAL=$?
66         fi
67         ;;
68   *)
69         echo $"Usage: $0 {start|stop|status|restart|reload|condrestart}"
70         exit 1
71 esac
72
73 exit $RETVAL