mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
19 lines
200 B
Plaintext
19 lines
200 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
case "$1" in
|
||
|
|
||
|
start)
|
||
|
if [ -x /usr/local/libexec/proftpd ]; then
|
||
|
/usr/local/libexec/proftpd && echo -n ' proftpd'
|
||
|
fi
|
||
|
;;
|
||
|
|
||
|
stop)
|
||
|
killall proftpd
|
||
|
;;
|
||
|
*)
|
||
|
echo "$0 start | stop"
|
||
|
;;
|
||
|
|
||
|
esac
|