This website requires JavaScript.
Explore
Help
Sign In
mr
/
openwrt
Watch
2
Star
0
Fork
1
You've already forked openwrt
Code
Issues
7
Pull Requests
Releases
Wiki
Activity
f4f4ace363
openwrt
/
package
/
base-files
/
files
/
etc
/
init.d
/
umount
9 lines
99 B
Plaintext
Raw
Normal View
History
Unescape
Escape
unmount filesystems at shutdown SVN-Revision: 7166
2007-05-10 18:45:04 +08:00
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
STOP=99
stop() {
sync
Don't do lazy unmounting of filessystems at reboot/poweroff. It is unneeded and could couse a broken filesystem if unmounting takes to long. Thanks to Peter Wagner SVN-Revision: 19568
2010-02-10 02:07:36 +08:00
umount -a -r
unmount filesystems at shutdown SVN-Revision: 7166
2007-05-10 18:45:04 +08:00
}
Reference in New Issue
Copy Permalink