diff options
author | Francois Pons <fpons@mandriva.com> | 2003-08-05 13:41:39 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-08-05 13:41:39 +0000 |
commit | 209bc3ed022ebdbcf535ea24f6024a0fc8e6ee44 (patch) | |
tree | 967cb79584171b3d2f5fb953bae2891becee01dd /perl-install | |
parent | d82e8f5b66102ba99012951acfa4e96b6d08ebd9 (diff) | |
download | drakx-209bc3ed022ebdbcf535ea24f6024a0fc8e6ee44.tar drakx-209bc3ed022ebdbcf535ea24f6024a0fc8e6ee44.tar.gz drakx-209bc3ed022ebdbcf535ea24f6024a0fc8e6ee44.tar.bz2 drakx-209bc3ed022ebdbcf535ea24f6024a0fc8e6ee44.tar.xz drakx-209bc3ed022ebdbcf535ea24f6024a0fc8e6ee44.zip |
added discovery and download meta_class facility in VERSION file.
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install2.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 876e6752d..281ae1b5c 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -548,9 +548,10 @@ sub main { my $VERSION = cat__(install_any::getFile("VERSION")) or do { print "VERSION file missing\n"; sleep 5 }; $::corporate = 1 if $VERSION =~ /corporate/i; - $o->{meta_class} = 'desktop' if $VERSION =~ /desktop/i; + $o->{meta_class} = 'desktop' if $VERSION =~ /desktop|discovery/i; + $o->{meta_class} = 'download' if $VERSION =~ /download/i; $o->{meta_class} = 'firewall' if $VERSION =~ /firewall/i; - $o->{meta_class} = 'server' if $VERSION =~ /server/i; + $o->{meta_class} = 'server' if $VERSION =~ /server|prosuite/i; if ($::oem) { $o->{partitioning}{use_existing_root} = 1; $o->{compssListLevel} = 4; |