summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm9
1 files changed, 4 insertions, 5 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index 717bbc518..82e1de841 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -761,11 +761,10 @@ sub umount {
$mntpoint =~ s|/$||;
log::l("calling umount($mntpoint)");
- # SYS_umount is not a valid sycall on modern kernels
- (arch() =~ /x86_64/
- ? syscall_('umount2', $mntpoint, 0)
- : syscall_('umount', $mntpoint)
- ) or die \N("error unmounting %s: %s", $mntpoint, $!);
+ syscall_('umount2', $mntpoint, 0) or do {
+ kill 15, fuzzy_pidofs('^fam\b');
+ syscall_('umount2', $mntpoint, 0) or die \N("error unmounting %s: %s", $mntpoint, $!);
+ };
substInFile { $_ = '' if /(^|\s)$mntpoint\s/ } '/etc/mtab'; #- don't care about error, if we can't read, we won't manage to write... (and mess mtab)
}