mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
6 lines
140 B
Cheetah
6 lines
140 B
Cheetah
|
#!/bin/sh
|
||
|
case "$1" in
|
||
|
stop) killall radiusd;;
|
||
|
*) [ -x !!PREFIX!!/sbin/radiusd ] && !!PREFIX!!/sbin/radiusd -y && echo -n ' radiusd';;
|
||
|
esac
|