summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--urpm.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/urpm.pm b/urpm.pm
index 79044d2c..583f4f22 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -2045,8 +2045,10 @@ sub try_mounting {
if ($is_iso) {
#- to mount an iso image, grab the first loop device
my $loopdev = urpm::sys::first_free_loopdev();
+ sys_log("mount iso $_ on $removable");
$loopdev and system("mount '$removable' '$_' -t iso9660 -o loop=$loopdev");
} else {
+ sys_log("mount $_");
system("mount '$_' 2>/dev/null");
}
$removable && $infos{$_}{fs} ne 'supermount' and $urpm->{removable_mounted}{$_} = undef;
@@ -2064,6 +2066,7 @@ sub try_umounting {
} urpm::sys::find_mntpoints($dir, \%infos))
{
$urpm->{log}(N("unmounting %s", $_));
+ sys_log("umount $_");
system("umount '$_' 2>/dev/null");
delete $urpm->{removable_mounted}{$_};
}