1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 19:43:16 +03:00
openwrt-xburst/package/mountd/files/mountd.init
blogic a2fd77df3f adds mountd. There is still much space for improvement, static mounts and fstab are not supported yet
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17853 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-04 14:01:17 +00:00

13 lines
89 B
Bash
Executable File

#!/bin/sh /etc/rc.common
START=80
start()
{
/sbin/mountd
}
stop()
{
killall mountd
}