mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
9b9c3928fd
- don't install config files as scripts - strip binary on install
19 lines
200 B
Bash
19 lines
200 B
Bash
#!/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
|