This website requires JavaScript.
Explore
Help
Register
Sign In
hak5
/
wifipineapple-openwrt
mirror of
https://github.com/hak5/wifipineapple-openwrt.git
Watch
1
Star
0
Fork
You've already forked wifipineapple-openwrt
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
e5adedfdd5
wifipineapple-openwrt
/
package
/
base-files
/
files
/
etc
/
init.d
/
umount
9 lines
102 B
Plaintext
Raw
Normal View
History
Unescape
Escape
unmount filesystems at shutdown git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7166 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-05-10 10:45:04 +00:00
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
STOP=99
stop() {
sync
[package] base-files: release an attached loop device on umounting Signed-off-by: Michael Heimpold <mhei@heimpold.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33477 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-09-19 15:13:44 +00:00
umount -a -d -r
unmount filesystems at shutdown git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7166 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-05-10 10:45:04 +00:00
}