From 8ba361474d92b2bc5b634dd078e18e1113f5d8ca Mon Sep 17 00:00:00 2001 From: Sebastian Schmelzer Date: Wed, 23 Nov 2011 10:43:05 +0100 Subject: FIX for failed to read mtab --- src/installer/OpenSLX/OSSetup/Distro/Base.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/installer') 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; -- cgit v1.2.3-55-g7522