summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm11
1 files changed, 7 insertions, 4 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index ad993b590..779a3bbc4 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -46,6 +46,12 @@ sub doPartitionDisks($$) {
my ($o, $hds) = @_;
fsedit::auto_allocate($hds, $o->{default}->{partitions});
}
+sub rebootNeeded($) {
+ my ($o) = @_;
+ log::l("Rebooting...");
+ exit(0);
+}
+
sub choosePartitionsToFormat($$) {
my ($o, $fstab) = @_;
@@ -58,10 +64,7 @@ sub choosePartitionsToFormat($$) {
sub choosePackages($$$) {
my ($o, $packages, $comps) = @_;
- foreach ('Base', @{$o->{default}->{comps}}) {
- $comps->{$_}->{selected} = 1;
- foreach (@{$comps->{$_}->{packages}}) { $_->{selected} = 1; }
- }
+ foreach (@{$o->{default}->{comps}}) { $comps->{$_}->{selected} = 1; }
foreach (@{$o->{default}->{packages}}) { $packages->{$_}->{selected} = 1; }
}