From 1be42769f9512b81961f270f91c3af5b8a942230 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 21 Aug 2007 14:57:31 +0000 Subject: - diskdrake: o fix displaying umount error message (#32273) (would need a little cleaning of stderr) --- perl-install/fs/mount.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install/fs/mount.pm') 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) -- cgit v1.2.1