You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
195 B

  1. #!/bin/sh /etc/rc.common
  2. # Copyright (C) 2006-2011 OpenWrt.org
  3. START=50
  4. start() {
  5. mkdir -m 0755 -p /var/run/vsftpd
  6. service_start /usr/sbin/vsftpd
  7. }
  8. stop() {
  9. service_stop /usr/sbin/vsftpd
  10. }