diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-08-17 08:07:43 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-08-17 08:07:43 +0000 |
commit | 336a0bf9555e157a8840c88e1a08614fb52499fc (patch) | |
tree | ee1e1f401a120bef451596d57d26521aae48dc0f /perl-install/install2.pm | |
parent | 62e4100e3f24b84b904f3fa77510fd9baa728ee7 (diff) | |
download | drakx-336a0bf9555e157a8840c88e1a08614fb52499fc.tar drakx-336a0bf9555e157a8840c88e1a08614fb52499fc.tar.gz drakx-336a0bf9555e157a8840c88e1a08614fb52499fc.tar.bz2 drakx-336a0bf9555e157a8840c88e1a08614fb52499fc.tar.xz drakx-336a0bf9555e157a8840c88e1a08614fb52499fc.zip |
$::corporate is dead
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 3af6d13f8..57ef9fe3c 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -23,7 +23,6 @@ use run_program; use any; use log; use fs; -#-$::corporate=1; #-####################################################################################### @@ -403,7 +402,6 @@ sub main { newt => sub { $o->{interactive} = "newt" }, text => sub { $o->{interactive} = "newt" }, stdio => sub { $o->{interactive} = "stdio" }, - corporate => sub { $::corporate = 1 }, kickstart => sub { $::auto_install = $v }, uml_install => sub { $::uml_install = 1 }, auto_install => sub { $::auto_install = $v }, @@ -587,7 +585,6 @@ sub main { if (!$::move && !$::testing) { 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|discovery/i; $o->{meta_class} = 'download' if $VERSION =~ /download/i; $o->{meta_class} = 'firewall' if $VERSION =~ /firewall/i; |