diff options
Diffstat (limited to 'urpm/cdrom.pm')
-rw-r--r-- | urpm/cdrom.pm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/urpm/cdrom.pm b/urpm/cdrom.pm index ccbd29dd..c40cd320 100644 --- a/urpm/cdrom.pm +++ b/urpm/cdrom.pm @@ -124,7 +124,12 @@ sub _eject_cdrom { require Hal::Cdroms; my $hal_cdroms = Hal::Cdroms->new; - $hal_cdroms->unmount($hal_path); + $hal_cdroms->unmount($hal_path) or do { + my $mntpoint = $hal_cdroms->get_mount_point($hal_path); + #- trying harder. needed when the cdrom was not mounted by hal + $mntpoint && system("umount '$mntpoint' 2>/dev/null") == 0 + or $urpm->{error}("failed to umount $hal_path: $hal_cdroms->{error}"); + }; $hal_cdroms->eject($hal_path); 1; } |