port vsftpd to buildroot-ng

git-svn-id: svn://svn.openwrt.org/openwrt/packages@4266 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico
2006-07-24 18:45:15 +00:00
parent c308a3d0c1
commit c52cbe59a9
6 changed files with 163 additions and 0 deletions

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 $?