mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 01:02:49 +02:00
4033a8be8c
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@913 3c298f89-4303-0410-b956-a3cf2f4a3e73
16 lines
156 B
Bash
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 $?
|