diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-09-23 17:57:15 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-09-23 17:57:15 +0000 |
commit | 48059d237deffe78b7e069d6f27e96d2571d0b14 (patch) | |
tree | a0861f4b57e0946a9ee42bf1d2a1b8af19f9b67f /perl-install | |
parent | 0ae9d045c586335ce34c1e9c70a825234c809610 (diff) | |
download | drakx-48059d237deffe78b7e069d6f27e96d2571d0b14.tar drakx-48059d237deffe78b7e069d6f27e96d2571d0b14.tar.gz drakx-48059d237deffe78b7e069d6f27e96d2571d0b14.tar.bz2 drakx-48059d237deffe78b7e069d6f27e96d2571d0b14.tar.xz drakx-48059d237deffe78b7e069d6f27e96d2571d0b14.zip |
allow setting compssListLevel from command line
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/install2.pm | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index d702ec789..0e138cbf5 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- allow setting compssListLevel from command line + Version 11.50.3 - 22 September 2008 - fix/workaround crash when setting banner background diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm index dd054a208..44b9897d4 100644 --- a/perl-install/install/install2.pm +++ b/perl-install/install/install2.pm @@ -376,6 +376,7 @@ sub main { suppl => sub { $o->{supplmedia} = $v }, askmedia => sub { $o->{askmedia} = 1 }, restore => sub { $::isRestore = 1 }, + compssListLevel => sub { $o->{compssListLevel} = $v }, }}{lc $n}; &$f if $f; } %cmdline; |