1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00
freebsd-ports/net/gnu-radius/files/gnu-radius.sh.tmpl
2002-03-08 03:11:04 +00:00

12 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