diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-09-19 14:06:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-09-19 14:06:49 +0000 |
commit | d55cb636fce5068edf122931a3b08c010db5f9bd (patch) | |
tree | 60c3546fa765c4905696201abb84605dd40278d1 /perl-install/install | |
parent | cff246889c98ebfcbad5150d43aa0cbdcf598257 (diff) | |
download | drakx-d55cb636fce5068edf122931a3b08c010db5f9bd.tar drakx-d55cb636fce5068edf122931a3b08c010db5f9bd.tar.gz drakx-d55cb636fce5068edf122931a3b08c010db5f9bd.tar.bz2 drakx-d55cb636fce5068edf122931a3b08c010db5f9bd.tar.xz drakx-d55cb636fce5068edf122931a3b08c010db5f9bd.zip |
- install "cryptsetup" when needed
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/any.pm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index f8c4f2d64..dfa328746 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - add a special license for google programs (only for "Powerpack" product) +- install "cryptsetup" when needed Version 11.47.1 - 17 September 2008 diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index b5e97310b..9f02e359b 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -513,6 +513,7 @@ sub default_packages { push @l, "nfs-utils-clients" if $o->{method} eq "nfs"; push @l, "mdadm" if !is_empty_array_ref($o->{all_hds}{raids}); push @l, "lvm2" if !is_empty_array_ref($o->{all_hds}{lvms}); + push @l, "cryptsetup" if !is_empty_array_ref($o->{all_hds}{dmcrypts}); push @l, "dmraid" if any { fs::type::is_dmraid($_) } @{$o->{all_hds}{hds}}; push @l, 'powernowd' if cat_('/proc/cpuinfo') =~ /AuthenticAMD/ && arch() =~ /x86_64/ || cat_('/proc/cpuinfo') =~ /model name.*Intel\(R\) Core\(TM\)2 CPU/; |