afed78ebfce65afd34ed194a852b748043a144ad
[openwrt/staging/wigyori.git] / package / system / fstools / files / fstab.init
1 #!/bin/sh /etc/rc.common
2 # (C) 2013 openwrt.org
3
4 START=40
5
6 boot() {
7 /sbin/block mount
8 }
9
10 start() {
11 echo "this file has been obsoleted. please call \"/sbin/block mount\" directly"
12 }
13
14 restart() {
15 start
16 }
17
18 stop() {
19 /sbin/block umount
20 }