summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_interactive.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2009-03-02 13:59:14 +0000
committerThierry Vignaud <tv@mandriva.org>2009-03-02 13:59:14 +0000
commit07e63eb1aa32230a39cdcfb3771f1d9f87a6e188 (patch)
treeaec99beee71011df2c03547caff918d4ac4cfc8c /perl-install/install/steps_interactive.pm
parenteb43d0218ba9b29eb92c41783be4591652bc7e9d (diff)
downloaddrakx-07e63eb1aa32230a39cdcfb3771f1d9f87a6e188.tar
drakx-07e63eb1aa32230a39cdcfb3771f1d9f87a6e188.tar.gz
drakx-07e63eb1aa32230a39cdcfb3771f1d9f87a6e188.tar.bz2
drakx-07e63eb1aa32230a39cdcfb3771f1d9f87a6e188.tar.xz
drakx-07e63eb1aa32230a39cdcfb3771f1d9f87a6e188.zip
(ask_change_cd) adapt to new API
Diffstat (limited to 'perl-install/install/steps_interactive.pm')
-rw-r--r--perl-install/install/steps_interactive.pm27
1 files changed, 4 insertions, 23 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm
index 5c449edb4..973d97e88 100644
--- a/perl-install/install/steps_interactive.pm
+++ b/perl-install/install/steps_interactive.pm
@@ -361,37 +361,18 @@ sub while_suspending_time {
# nb: $file can be a directory
sub ask_change_cd {
- my ($o, $phys_m, $o_rel_file) = @_;
+ my ($o, $medium) = @_;
- while_suspending_time($o, sub { ask_change_cd_($o, $phys_m, $o_rel_file) });
+ while_suspending_time($o, sub { ask_change_cd_($o, $medium) });
}
sub ask_change_cd_ {
- my ($o, $phys_m, $o_rel_file) = @_;
-
- local $| = 1; print "\a";
-
- foreach (1 .. 32) {
- install::media::umount_phys_medium($phys_m);
- install::media::openCdromTray($phys_m->{device});
+ my ($o, $medium) = @_;
$o->ask_okcancel('', N("Change your Cd-Rom!
Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when done.
-If you do not have it, press Cancel to avoid installation from this Cd-Rom.", $phys_m->{name}), 1) or return;
-
- foreach (1 .. 7) {
- eval { fs::mount::part($phys_m) };
- last if $phys_m->{isMounted};
- # we must retry since mount will now fail instead of waiting for the drive to recognise the CD (cf #43230)
- sleep 2;
- }
-
- #- it can be a directory, so don't use -f
- !$o_rel_file || -e install::media::path($phys_m, $o_rel_file) and return 1;
+If you do not have it, press Cancel to avoid installation from this Cd-Rom.", $medium), 1) or return;
- log::l("file " . install::media::path($phys_m, $o_rel_file) . " not found");
- }
- undef;
}
sub selectSupplMedia {