immortalwrt/package/system/fstools/files/fstab.init

22 lines
207 B
Plaintext
Raw Normal View History

2017-09-06 19:19:45 +08:00
#!/bin/sh /etc/rc.common
# (C) 2013 openwrt.org
START=40
boot() {
/sbin/block mount
}
start() {
2019-12-09 01:30:10 +08:00
/sbin/block mount
2019-11-08 21:15:16 +08:00
}
restart() {
2019-12-09 13:13:14 +08:00
/sbin/block umount
2019-12-09 01:30:10 +08:00
/sbin/block mount
2017-09-06 19:19:45 +08:00
}
stop() {
/sbin/block umount
}