mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39895 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
341 B
Bash
15 lines
341 B
Bash
#!/bin/sh /etc/rc.common
|
|
# (C) 2013 openwrt.org
|
|
|
|
START=40
|
|
|
|
start() {
|
|
echo "this file has been obseleted. please call \"/sbin/block mount\" directly"
|
|
/sbin/block mount
|
|
}
|
|
|
|
stop() {
|
|
echo "this file has been obseleted. please call \"/sbin/block umount\" directly"
|
|
/sbin/block umount
|
|
}
|