1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-15 23:50:44 +00:00
freebsd-ports/ftp/proftpd-devel/files/proftpd.sh.sample

19 lines
200 B
Plaintext
Raw Normal View History

#!/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