forked from Lainports/freebsd-ports
11 lines
158 B
Bash
11 lines
158 B
Bash
#!/bin/sh
|
|
case "$1" in
|
|
stop)
|
|
killall radiusd
|
|
;;
|
|
*)
|
|
if [ -x !!PREFIX!!/sbin/radiusd ]; then
|
|
!!PREFIX!!/sbin/radiusd -y && echo -n ' radiusd'
|
|
fi
|
|
;;
|
|
esac
|