mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
e48c182ba8
PR: 9509 Submitted by: maintainer
6 lines
140 B
Bash
6 lines
140 B
Bash
#!/bin/sh
|
|
case "$1" in
|
|
stop) killall radiusd;;
|
|
*) [ -x !!PREFIX!!/sbin/radiusd ] && !!PREFIX!!/sbin/radiusd -y && echo -n ' radiusd';;
|
|
esac
|