immortalwrt/package/system/fstools/files/fstab.init
2019-12-09 13:13:14 +08:00

22 lines
207 B
Bash
Executable File

#!/bin/sh /etc/rc.common
# (C) 2013 openwrt.org
START=40
boot() {
/sbin/block mount
}
start() {
/sbin/block mount
}
restart() {
/sbin/block umount
/sbin/block mount
}
stop() {
/sbin/block umount
}