diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-08-13 03:44:46 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-08-13 03:44:46 +0000 |
commit | 8ebb5bd002ae74da0e6d1ef1bce1f8b2294f4e2b (patch) | |
tree | 99e713d6448b863a1febf34995c1f841bf03889b /perl-install/install_steps_interactive.pm | |
parent | afd31bb0f770218ed23053971e7265f26cd925a6 (diff) | |
download | drakx-8ebb5bd002ae74da0e6d1ef1bce1f8b2294f4e2b.tar drakx-8ebb5bd002ae74da0e6d1ef1bce1f8b2294f4e2b.tar.gz drakx-8ebb5bd002ae74da0e6d1ef1bce1f8b2294f4e2b.tar.bz2 drakx-8ebb5bd002ae74da0e6d1ef1bce1f8b2294f4e2b.tar.xz drakx-8ebb5bd002ae74da0e6d1ef1bce1f8b2294f4e2b.zip |
Don't ask for the selection of supplementary media in non-interactive
installs.
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 6e377824a..f1ef4fbcc 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -383,6 +383,11 @@ sub setPackages { pkgs::selectPackagesToUpgrade($o->{packages}, $o->{prefix}); } } + +sub selectSupplMedia { + my ($o, $suppl_method) = @_; + install_any::selectSupplMedia($o, $suppl_method); +} #------------------------------------------------------------------------------ sub choosePackages { my ($o, $packages, $compssUsers, $_first_time) = @_; |