projects
/
people
/
pmueller
/
ipfire-2.x.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
23ed79c
)
Remove unmounting errors after installation.
author
Arne Fitzenreiter
<arne_f@ipfire.org>
Thu, 12 Aug 2010 16:04:14 +0000
(18:04 +0200)
committer
Arne Fitzenreiter
<arne_f@ipfire.org>
Thu, 12 Aug 2010 16:04:14 +0000
(18:04 +0200)
config/install/halt
patch
|
blob
|
blame
|
history
diff --git
a/config/install/halt
b/config/install/halt
index
1518f7d
..
90a0c80
100644
(file)
--- a/
config/install/halt
+++ b/
config/install/halt
@@
-8,13
+8,9
@@
sleep 3
echo "Sending all processes the KILL signal..."
/sbin/killall5 -9
sleep 3
-echo "Unmounting filesystems"
-/bin/umount /tmp
-/bin/umount /sys
-/bin/umount /dev/pts
-/bin/umount /dev
-/bin/umount /root
-/bin/umount /proc
-echo "Unmounting root"
+echo "Unmounting filesystems..."
+/bin/umount -a > /dev/null 2>&1
+echo "Unmounting root..."
/bin/mount -n -o remount,ro /
+echo "Rebooting..."
/sbin/reboot -f