17 lines
430 B
Bash
Executable File
17 lines
430 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# (C) 2013 openwrt.org
|
|
|
|
START=40
|
|
DEPEND=boot
|
|
|
|
start() {
|
|
echo "this file has been obsoleted. please call \"/sbin/block mount\" directly"
|
|
/sbin/block mount &>/dev/kmsg
|
|
[ -f /sbin/restorecon ] && restorecon -R /mnt /data
|
|
}
|
|
|
|
stop() {
|
|
echo "this file has been obsoleted. please call \"/sbin/block umount\" directly"
|
|
/sbin/block umount &>/dev/kmsg
|
|
}
|