openwrtv4/package/base-files/files/etc/init.d/umount
Mike Baker f0fa2a3de5 unmount filesystems at shutdown
SVN-Revision: 7166
2007-05-10 10:45:04 +00:00

8 lines
99 B
Bash
Executable file

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
STOP=99
stop() {
sync
umount -a -r
}