blob: f5aee8104faf8eb48dd98bf54306c97ea23e21a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
#!/bin/sh
. /lib/svc/share/smf_include.sh
#
#
# radiusd Start the radius daemon.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
#
# Copyright (C) 2001-2012 The FreeRADIUS Project http://www.freeradius.org
prefix=@prefix@
exec_prefix=@exec_prefix@
sbindir=@sbindir@
localstatedir=@localstatedir@
logdir=@logdir@
rundir=${localstatedir}/run/radiusd
sysconfdir=@sysconfdir@
#
# If you have issues with OpenSSL, uncomment these next lines.
#
# Something similar may work for MySQL, and you may also
# have to LD_PRELOAD libz.so
#
#LD_LIBRARY_PATH= -lcrypto -lssl -lcrypto
#LD_RUN_PATH= -lcrypto -lssl -lcrypto:
#LD_PRELOAD= -lcrypto -lssl -lcryptolibcrypto.so
export LD_LIBRARY_PATH LD_RUN_PATH LD_PRELOAD
RADIUSD=$sbindir/radiusd
RADDBDIR=@raddbdir@
DESC="FreeRADIUS"
#
# See 'man radiusd' for details on command-line options.
#
ARGS=""
test -f $RADIUSD || exit $SMF_EXIT_ERR_CONFIG
test -f $RADDBDIR/radiusd.conf || exit $SMF_EXIT_ERR_CONFIG
#if [ ! -d $rundir ] ; then
# mkdir $rundir
# chown radmin:radius
# chmod 775 $rundir
#fi
#
#if [ ! -d $logdir ] ; then
# mkdir $logdir
# chown radmin:radius $logdir
# chmod 770 $logdir
# chmod g+s $logdir
#fi
#
#if [ ! -f $logdir/radius.log ]; then
# touch $logdir/radius.log
#fi
#
#chown radmin:radius $logdir/radius.log
#chmod 660 $logdir/radius.log
case "$1" in
start)
echo -n "Starting $DESC: "
$RADIUSD $ARGS
echo "radiusd"
;;
stop)
echo -n "Stopping $DESC: "
smf_kill_contract $2 TERM 1
[ $? -ne 0 ] && exit 1
echo "radiusd."
;;
refresh)
echo "Reloading $DESC configuration files."
[ -f $rundir/radiusd.pid ] && kill -HUP `cat $rundir/radiusd.pid`
;;
check)
$RADIUSD -CX $ARGS
exit $?
;;
*)
echo "Usage: $0 {start|stop|refresh|check}"
exit 1
esac
exit $SMF_EXIT_OK
|