]> git.pld-linux.org Git - packages/freeradius-server.git/blame - freeradius-server.init
- 2.1.4 - just fetch sources, NFY
[packages/freeradius-server.git] / freeradius-server.init
CommitLineData
4e0fee8e 1#!/bin/sh
2#
3ae89c61 3# chkconfig: 345 88 12
4e0fee8e 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[ -f /etc/raddb/radiusd.conf ] || exit 0
27
3ae89c61
PG
28checkconfig() {
29 run_cmd "Checking RADIUS configuration " /usr/sbin/radiusd -C || exit 1
30}
31
4e0fee8e 32start() {
33 # Check if the service is already running?
34 if [ ! -f /var/lock/subsys/freeradius ]; then
35 msg_starting RADIUS
36 daemon /usr/sbin/radiusd
37 RETVAL=$?
38 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/freeradius
39 else
40 msg_already_running RADIUS
41 fi
42}
43
44stop() {
45 # Stop daemons.
46 if [ -f /var/lock/subsys/freeradius ]; then
47 msg_stopping RADIUS
48 killproc /usr/sbin/radiusd
49 rm -f /var/lock/subsys/freeradius > /dev/null 2>&1
50 else
51 msg_not_running RADIUS
52 fi
53}
54
55RETVAL=0
56case "$1" in
57 start)
58 start
59 ;;
60 stop)
61 stop
62 ;;
63 status)
64 status radiusd
3ae89c61 65 checkconfig
4e0fee8e 66 exit $?
67 ;;
f950e9e5 68 reload|force-reload)
4e0fee8e 69 if [ -f /var/lock/subsys/freeradius ]; then
3ae89c61 70 checkconfig
4e0fee8e 71 msg_reloading RADIUS
72 killproc /usr/sbin/radiusd -HUP
73 RETVAL=$?
74 else
75 msg_not_running RADIUS
76 exit 7
77 fi
78 ;;
f950e9e5 79 restart)
3ae89c61 80 checkconfig
4e0fee8e 81 stop
82 sleep 3
83 start
84 ;;
f950e9e5 85 try-restart)
4e0fee8e 86 if [ -f /var/lock/subsys/freeradius ]; then
3ae89c61
PG
87 checkconfig
88 stop
4e0fee8e 89 sleep 3
3ae89c61 90 start
4e0fee8e 91 fi
92 ;;
93 *)
f950e9e5 94 msg_usage "$0 {start|stop|restart|try-restart|reload|force-reload|status}"
4e0fee8e 95 exit 3
96esac
97
98exit $RETVAL
This page took 0.035362 seconds and 4 git commands to generate.