From 6edf51a2dbf8a11b521a1d36b3a593da594a6bcf Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 7 Apr 2005 16:34:33 +0000 Subject: handle third party modules from various devices (at least floppy is still working :) --- perl-install/install_steps_interactive.pm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'perl-install/install_steps_interactive.pm') diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index a23c6e060..49a8b026e 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -765,10 +765,11 @@ sub afterInstallPackages($) { $o->SUPER::afterInstallPackages; } -sub updateModulesFromFloppy { - my ($o) = @_; - $o->ask_okcancel('', N("Please insert the Update Modules floppy in drive %s", $o->{updatemodules}), 1) or return; - $o->SUPER::updateModulesFromFloppy; +sub updatemodules { + my ($o, $dev, $rel_dir) = @_; + + $o->ask_okcancel('', N("Please ensure the Update Modules media is in drive %s", $dev), 1) or return; + $o->SUPER::updatemodules($dev, $rel_dir); } #------------------------------------------------------------------------------ -- cgit v1.2.1