freebsd-ports/net/gnu-radius/files/gnu-radius.sh.tmpl
2002-03-08 03:11:04 +00:00

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