lede/package/system/fstools/files/fstab.init
2019-12-08 09:30:10 -08:00

22 lines
208 B
Bash

#!/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
}