mirror of https://github.com/hak5/openwrt.git
9 lines
99 B
Plaintext
9 lines
99 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2006 OpenWrt.org
|
||
|
|
||
|
STOP=99
|
||
|
stop() {
|
||
|
sync
|
||
|
umount -a -r
|
||
|
}
|