diff options
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; |