proftpd.init 376 B

123456789101112131415161718192021222324252627282930
  1. #!/bin/sh
  2. #PKG proftpd
  3. #INIT 60
  4. . /etc/rc.conf
  5. case $1 in
  6. autostop) ;;
  7. autostart)
  8. test x"${proftpd:-NO}" = x"NO" && exit 0
  9. exec sh $0 start
  10. ;;
  11. start)
  12. [ -f /etc/proftpd.conf ] || exit
  13. /usr/sbin/proftpd
  14. ;;
  15. stop)
  16. kill $(pgrep -f /usr/sbin/proftpd)
  17. ;;
  18. restart)
  19. sh $0 stop
  20. sleep 1
  21. sh $0 start
  22. ;;
  23. *)
  24. echo "Usage: $0 {start | stop | restart}"
  25. exit 1
  26. ;;
  27. esac
  28. exit $?