This website requires JavaScript.
Explore
Help
Register
Sign In
hak5
/
openwrt
mirror of
https://github.com/hak5/openwrt.git
Watch
1
Star
0
Fork
You've already forked openwrt
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
b285f2fc16
openwrt
/
package
/
base-files
/
files
/
etc
/
init.d
/
umount
9 lines
102 B
Plaintext
Raw
Normal View
History
Unescape
Escape
unmount filesystems at shutdown SVN-Revision: 7166
2007-05-10 10:45:04 +00:00
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
STOP=99
stop() {
sync
when rebooting, use lazy umounts as fallback (patch by puchu) SVN-Revision: 19429
2010-01-30 18:17:57 +00:00
umount -a -r -l
unmount filesystems at shutdown SVN-Revision: 7166
2007-05-10 10:45:04 +00:00
}