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

23 lines
226 B
Plaintext
Raw Normal View History

2017-09-06 19:19:45 +08:00
#!/bin/sh /etc/rc.common
# SPDX-License-Identifier: GPL-2.0-only
#
# Copyright (C) 2013-2020 OpenWrt.org
2017-09-06 19:19:45 +08:00
START=11
2017-09-06 19:19:45 +08:00
boot() {
/sbin/block mount
}
start() {
return 0
2017-09-06 19:19:45 +08:00
}
restart() {
return 0
}
2017-09-06 19:19:45 +08:00
stop() {
/sbin/block umount
}