diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-09 18:02:00 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-09 18:02:00 +0000 |
commit | f1669da7e3a6ce5f267dc5aec5d14f6814a0a6af (patch) | |
tree | fa06b8611be46a41cc5804184d22706e28f96748 /perl-install/interactive.pm | |
parent | c7f44b666d13fda8d4219947d6037fd63f6eaa91 (diff) | |
download | drakx-f1669da7e3a6ce5f267dc5aec5d14f6814a0a6af.tar drakx-f1669da7e3a6ce5f267dc5aec5d14f6814a0a6af.tar.gz drakx-f1669da7e3a6ce5f267dc5aec5d14f6814a0a6af.tar.bz2 drakx-f1669da7e3a6ce5f267dc5aec5d14f6814a0a6af.tar.xz drakx-f1669da7e3a6ce5f267dc5aec5d14f6814a0a6af.zip |
new do_pkgs package which get rid of pkgs_interactive::* which was in install_any
and standalone, and partially duplicated
Diffstat (limited to 'perl-install/interactive.pm')
-rw-r--r-- | perl-install/interactive.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm index 2cb1afa31..cb6f3c74a 100644 --- a/perl-install/interactive.pm +++ b/perl-install/interactive.pm @@ -119,6 +119,12 @@ sub resume {} sub end {} sub exit { exit($_[0]) } +sub do_pkgs { + my ($in) = @_; + require do_pkgs; + do_pkgs->vnew($in); +} + #-###################################################################################### #- Interactive functions #-###################################################################################### |