unmount filesystems at shutdown
authorMike Baker <mbm@openwrt.org>
Thu, 10 May 2007 10:45:04 +0000 (10:45 +0000)
committerMike Baker <mbm@openwrt.org>
Thu, 10 May 2007 10:45:04 +0000 (10:45 +0000)
SVN-Revision: 7166

package/base-files/files/etc/init.d/umount [new file with mode: 0755]

diff --git a/package/base-files/files/etc/init.d/umount b/package/base-files/files/etc/init.d/umount
new file mode 100755 (executable)
index 0000000..a4e477e
--- /dev/null
@@ -0,0 +1,8 @@
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2006 OpenWrt.org 
+
+STOP=99
+stop() {
+       sync
+       umount -a -r
+}