Push to 2.1.5
[freeradius.git] / redhat / rc.radiusd-redhat
1 #!/bin/sh
2 #
3 # chkconfig: - 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, 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
39         RETVAL=$?
40         echo
41         [ $RETVAL -eq 0 ] && touch $LOCKF &&
42             ln -s /var/run/radiusd/radiusd.pid /var/run/radiusd.pid 2>/dev/null
43         ;;
44   stop)
45         echo -n $"Stopping RADIUS server: "
46         killproc $RADIUSD
47         RETVAL=$?
48         echo
49         [ $RETVAL -eq 0 ] && rm -f $LOCKF
50         ;;
51   status)
52         status radiusd
53         RETVAL=$?
54         ;;
55   reload)
56         echo -n $"Reloading RADIUS server: "
57         killproc $RADIUSD -HUP
58         RETVAL=$?
59         echo
60         ;;
61   restart)
62         $0 stop
63         sleep 3
64         $0 start
65         RETVAL=$?
66         ;;
67   condrestart)
68         if [ -f $LOCKF ]; then
69                 $0 stop
70                 sleep 3
71                 $0 start
72                 RETVAL=$?
73         fi
74         ;;
75   *)
76         echo $"Usage: $0 {start|stop|status|restart|reload|condrestart}"
77         exit 1
78 esac
79
80 exit $RETVAL