summaryrefslogtreecommitdiffstats
path: root/openwrt/package/vsftpd/files/vsftpd.init
diff options
context:
space:
mode:
Diffstat (limited to 'openwrt/package/vsftpd/files/vsftpd.init')
-rw-r--r--openwrt/package/vsftpd/files/vsftpd.init15
1 files changed, 0 insertions, 15 deletions
diff --git a/openwrt/package/vsftpd/files/vsftpd.init b/openwrt/package/vsftpd/files/vsftpd.init
deleted file mode 100644
index 4d4f4f240d..0000000000
--- a/openwrt/package/vsftpd/files/vsftpd.init
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-RUN_D=/var/run/vsftpd
-
-case $1 in
- start)
- [ -d $RUN_D ] || mkdir -p $RUN_D
- vsftpd
- ;;
- *)
- echo "usage: $0 (start)"
- exit 1
-esac
-
-exit $?