From: Arne Fitzenreiter Date: Thu, 12 Aug 2010 16:04:14 +0000 (+0200) Subject: Remove unmounting errors after installation. X-Git-Tag: v2.9-beta1~48^2~5^2~2^2~124 X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=commitdiff_plain;h=c5da0e64c2141f21baad0d00418dd09f65efe13c;hp=23ed79cb4910cf6c869399aab6457003dbcaa79d Remove unmounting errors after installation. --- diff --git a/config/install/halt b/config/install/halt index 1518f7d4cb..90a0c80fe7 100644 --- 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