summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/mount.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-08-21 14:57:31 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-08-21 14:57:31 +0000
commit1be42769f9512b81961f270f91c3af5b8a942230 (patch)
treedc925b36677a6e54489885fb541833fc4c17276c /perl-install/fs/mount.pm
parent93810de8906bd9decf0e2d34bdaf429a415517d5 (diff)
downloaddrakx-1be42769f9512b81961f270f91c3af5b8a942230.tar
drakx-1be42769f9512b81961f270f91c3af5b8a942230.tar.gz
drakx-1be42769f9512b81961f270f91c3af5b8a942230.tar.bz2
drakx-1be42769f9512b81961f270f91c3af5b8a942230.tar.xz
drakx-1be42769f9512b81961f270f91c3af5b8a942230.zip
- diskdrake:
o fix displaying umount error message (#32273) (would need a little cleaning of stderr)
Diffstat (limited to 'perl-install/fs/mount.pm')
-rw-r--r--perl-install/fs/mount.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/fs/mount.pm b/perl-install/fs/mount.pm
index baf1ce837..5687ac4d3 100644
--- a/perl-install/fs/mount.pm
+++ b/perl-install/fs/mount.pm
@@ -115,7 +115,8 @@ sub umount {
run_program::run('umount', $mntpoint) or do {
kill 15, fuzzy_pidofs('^fam\b');
- run_program::run('umount', $mntpoint) or die N("error unmounting %s: %s", $mntpoint, $!);
+ my $err;
+ run_program::run('umount', '2>', \$err, $mntpoint) or die N("error unmounting %s: %s", $mntpoint, $err);
};
substInFile { $_ = '' if /(^|\s)$mntpoint\s/ } '/etc/mtab'; #- do not care about error, if we can not read, we will not manage to write... (and mess mtab)