1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-16 22:14:26 +03:00
openwrt-xburst/package/vsftpd/files/vsftpd.init
nico 4033a8be8c Add vsftpd package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@913 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-05-15 20:39:09 +00:00

16 lines
156 B
Bash

#!/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 $?