1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

Add vsftpd package

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@913 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico
2005-05-15 20:39:09 +00:00
parent ea12cac808
commit 4033a8be8c
11 changed files with 167 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
background=YES
listen=YES
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
check_shell=NO
#dirmessage_enable=YES
#ftpd_banner=Welcome to blah FTP service.
session_support=NO
#syslog_enable=YES
#userlist_enable=YES
#userlist_deny=NO
#userlist_file=/etc/vsftpd.users
#xferlog_enable=YES
#xferlog_file=/var/log/vsftpd.log
#xferlog_std_format=YES

View File

@@ -0,0 +1,15 @@
#!/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 $?