This website works better with JavaScript.
Explore
Help
Sign In
hsist
/
freifunkist-firmware
Watch
6
Star
1
Fork
You've already forked freifunkist-firmware
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20513
Commits
1
Branch
0
Tags
164 MiB
Tag:
Branch:
Tree:
a243cb1735
master
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'a243cb1735'
${ noResults }
freifunkist-firmware
/
package
/
base-files
/
files
/
etc
/
init.d
/
umount
9 lines
99 B
Raw
Normal View
History
Unescape
Escape
unmount filesystems at shutdown SVN-Revision: 7166
18 years ago
#!/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
15 years ago
umount -a -r
unmount filesystems at shutdown SVN-Revision: 7166
18 years ago
}