diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-21 13:22:14 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-21 13:22:14 +0000 |
commit | e3275325538d5902c31d2604f66162837fe60317 (patch) | |
tree | fd1612558884b742f321c4aa1505aa9e1e4b53f9 /perl-install/install_any.pm | |
parent | 0393a451af5eff8edf4b944c97b05fead8802b16 (diff) | |
download | drakx-e3275325538d5902c31d2604f66162837fe60317.tar drakx-e3275325538d5902c31d2604f66162837fe60317.tar.gz drakx-e3275325538d5902c31d2604f66162837fe60317.tar.bz2 drakx-e3275325538d5902c31d2604f66162837fe60317.tar.xz drakx-e3275325538d5902c31d2604f66162837fe60317.zip |
add HIGH_SECURITY flag, use it for libsafe and kernel22-secure
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 2a5e591ab..d35877bba 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -334,7 +334,6 @@ sub setPackages { push @{$o->{default_packages}}, "numlock" if $o->{miscellaneous}{numlock}; push @{$o->{default_packages}}, "kernel-enterprise" if (availableRamMB() > 800) && (arch() !~ /ia64/); push @{$o->{default_packages}}, "kernel22" if c::kernel_version() =~ /^\Q2.2/; - push @{$o->{default_packages}}, "kernel22-secure" if $o->{security} > 3; push @{$o->{default_packages}}, "kernel-smp" if detect_devices::hasSMP(); push @{$o->{default_packages}}, "kernel-pcmcia-cs" if $o->{pcmcia}; push @{$o->{default_packages}}, "raidtools" if !is_empty_array_ref($o->{all_hds}{raids}); @@ -373,6 +372,7 @@ sub setPackages { $o->{compssUsersChoice}{BURNER} = 1 if detect_devices::burners(); $o->{compssUsersChoice}{DVD} = 1 if detect_devices::dvdroms(); $o->{compssUsersChoice}{PCMCIA} = 1 if detect_devices::hasPCMCIA(); + $o->{compssUsersChoice}{HIGH_SECURITY} = 1 if $o->{security} > 3; $o->{compssUsersChoice}{'3D'} = 1 if detect_devices::matching_desc('Matrox.* G[245][05]0') || detect_devices::matching_desc('Riva.*128') || |