summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSebastian Schmelzer2011-11-23 10:43:05 +0100
committerSebastian Schmelzer2011-11-23 10:43:05 +0100
commit8ba361474d92b2bc5b634dd078e18e1113f5d8ca (patch)
treeb0046c7e6706c0a57b6738567a8a853c0959721d /src
parentquick fix for udhcpc error with new bb version (diff)
downloadcore-8ba361474d92b2bc5b634dd078e18e1113f5d8ca.tar.gz
core-8ba361474d92b2bc5b634dd078e18e1113f5d8ca.tar.xz
core-8ba361474d92b2bc5b634dd078e18e1113f5d8ca.zip
FIX for failed to read mtab
Diffstat (limited to 'src')
-rw-r--r--src/installer/OpenSLX/OSSetup/Distro/Base.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/installer/OpenSLX/OSSetup/Distro/Base.pm b/src/installer/OpenSLX/OSSetup/Distro/Base.pm
index 3f640f7c..84f56d3f 100644
--- a/src/installer/OpenSLX/OSSetup/Distro/Base.pm
+++ b/src/installer/OpenSLX/OSSetup/Distro/Base.pm
@@ -205,12 +205,12 @@ sub finishSession
# umount /proc, /dev/pts (if we have 'umount' available)
if (qx{which umount 2>/dev/null}) {
- if (slxsystem("umount /proc")) {
- warn _tr("unable to umount '%s' (%s)\n", "/proc", $!);
- }
if (slxsystem("umount /dev/pts")) {
warn _tr("unable to umount '%s' (%s)\n", "/dev/pts", $!);
}
+ if (slxsystem("umount /proc")) {
+ warn _tr("unable to umount '%s' (%s)\n", "/proc", $!);
+ }
}
return 1;