diff options
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index ceef9a294..b25997932 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -45,8 +45,8 @@ sub chooseLanguage($) { sub selectInstallOrUpgrade($) { $o->{default}->{isUpgrade} || 0; } -sub selectInstallClass($) { - $o->{default}->{installClass} || 'Custom'; +sub selectInstallClass($@) { + $o->{default}->{installClass} || $_[1]; } sub setupSCSIInterfaces { die "TODO"; @@ -72,7 +72,7 @@ sub choosePartitionsToFormat($$) { } sub choosePackages($$$) { - my ($o, $packages, $comps) = @_; + my ($o, $packages, $compss) = @_; } sub beforeInstallPackages($) { |