mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
14 lines
195 B
Bash
14 lines
195 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
|
|
|
START=50
|
|
|
|
start() {
|
|
mkdir -m 0755 -p /var/run/vsftpd
|
|
service_start /usr/sbin/vsftpd
|
|
}
|
|
|
|
stop() {
|
|
service_stop /usr/sbin/vsftpd
|
|
}
|