mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
367ac6ed3b
PR: 33917 Submitted by: lance@evitel.net
12 lines
158 B
Bash
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
|