简单的linux下shell启动脚本:
#!/bin/sh
#
# /etc/rc.d/init.d/radiusd
#
# Starts the radius daemon
#
# chkconfig: - 65 35
# description: radius Server
# processname: radiusd
# Source function library.
. /etc/rc.d/init.d/functions
prog="radiusd"
#[ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog
exec=${exec:=/usr/sbin/$prog}
config_dir=${config_dir:=/etc/raddb}
config=${config:=$config_dir/radiusd.conf}
pidfile=${pidfile:=/var/run/$prog/$prog.pid}
lockfile=${lockfile:=/var/lock/subsys/radiusd}
start() {
echo -n $"Starting $prog: "
daemon $exec
retval=$?
echo
[ $retval -eq 0 ] && touch $lockfile
return $retval
}
stop() {
echo -n $"Stopping $prog: "
killproc $prog
retval=$?
echo
[ $retval -eq 0 ] && rm -f $lockfile $pidfile
return $retval
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart|reload)
stop
start
;;
*)
echo "Usage: {start|stop|restart|reload}"
exit 1
;;
esac
exit $RETVAL
本文介绍了一个简单的 Linux shell 脚本来管理 Radius 服务。该脚本提供了启动、停止、重启和重新加载 Radius 服务的功能,并包含了必要的配置路径和进程管理。适用于希望简化 Radius 服务管理流程的系统管理员。
1万+

被折叠的 条评论
为什么被折叠?



