diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-11-09 03:02:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-11-09 03:02:37 +0000 |
commit | 950fe7395621dc21885ac3e1280e007248646608 (patch) | |
tree | e3016a95189ee4c75a05b816d91dd22f071bd2c0 /perl-install/install_any.pm | |
parent | c7df31b71335c18d60cdb8a7f5fee24d56cca4b8 (diff) | |
download | drakx-backup-do-not-use-950fe7395621dc21885ac3e1280e007248646608.tar drakx-backup-do-not-use-950fe7395621dc21885ac3e1280e007248646608.tar.gz drakx-backup-do-not-use-950fe7395621dc21885ac3e1280e007248646608.tar.bz2 drakx-backup-do-not-use-950fe7395621dc21885ac3e1280e007248646608.tar.xz drakx-backup-do-not-use-950fe7395621dc21885ac3e1280e007248646608.zip |
no_comment
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 2326edaa1..d02a80608 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -172,9 +172,11 @@ sub getHds { getHds: $o->{hds} = catch_cdie { fsedit::hds(\@drives, $o->{partitioning}) } sub { - $o->ask_warn(_("Error"), -_("I can't read your partition table, it's too corrupted for me :( -I'll try to go on blanking bad partitions")) unless $o->{partitioning}{readonly}; + my ($err) = $@ =~ /(.*) at /; + $@ =~ /overlapping/ and $o->ask_warn('', $@), return 1; + $o->ask_okcancel(_("Error"), +[_("I can't read your partition table, it's too corrupted for me :( +I'll try to go on blanking bad partitions"), $err]) unless $o->{partitioning}{readonly}; $ok = 0; 1 }; @@ -339,7 +341,7 @@ sub unlockCdroms() { foreach detect_devices::cdroms(); } sub ejectCdrom() { - ioctl detect_devices::tryOpen($_), c::CDROMEJECT(), 1 + eval { ioctl detect_devices::tryOpen($_), c::CDROMEJECT(), 1 } foreach map { first split } grep { m|/tmp/rhimage| } cat_("/proc/mounts"); } |