summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-11-08 12:50:22 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-11-08 12:50:22 +0000
commit477f9e81cb3aa78829210942e8185e8146c6cd5e (patch)
tree9d8a4134a0c54dd54fbf623adff5d039f7a844c6 /perl-install/install_steps.pm
parent38c803288507d86bfd04daf2f7a4b656f2c7de7b (diff)
downloaddrakx-backup-do-not-use-477f9e81cb3aa78829210942e8185e8146c6cd5e.tar
drakx-backup-do-not-use-477f9e81cb3aa78829210942e8185e8146c6cd5e.tar.gz
drakx-backup-do-not-use-477f9e81cb3aa78829210942e8185e8146c6cd5e.tar.bz2
drakx-backup-do-not-use-477f9e81cb3aa78829210942e8185e8146c6cd5e.tar.xz
drakx-backup-do-not-use-477f9e81cb3aa78829210942e8185e8146c6cd5e.zip
no_comment
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 8bcc53898..b2041a11c 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -193,6 +193,12 @@ sub beforeInstallPackages {
sub installPackages($$) {
my ($o, $packages) = @_;
+
+ while (my ($k, $v) = each %{$o->{compssUsersChoice}}) {
+ $v or next;
+ pkgs::select($packages, $_) foreach @{$o->{compssUsers}{$k}};
+ }
+
#- hack to ensure proper ordering for installation of packages.
my @firstToInstall = qw(basesystem sed);
my %firstInstalled;