contrib/bftpd/ftpd
2009-01-12 02:18:01 +11:00

24 lines
232 B
Bash
Executable File

#!/bin/sh
#
# /etc/rc.d/ftpd: start/stop ftp daemon
#
case $1 in
start)
/usr/sbin/bftpd -d
;;
stop)
killall -q bftpd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file