summaryrefslogtreecommitdiffstats
path: root/perl-install/install2.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-11-07 11:52:51 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-11-07 11:52:51 +0000
commite9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed (patch)
tree6d1b334d8a1cd664289f674aa537be6d4344158f /perl-install/install2.pm
parent96510efce15225384a474e81ef2ea91d1ae3a4ee (diff)
downloaddrakx-backup-do-not-use-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.tar
drakx-backup-do-not-use-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.tar.gz
drakx-backup-do-not-use-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.tar.bz2
drakx-backup-do-not-use-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.tar.xz
drakx-backup-do-not-use-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.zip
no_comment
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r--perl-install/install2.pm7
1 files changed, 2 insertions, 5 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm
index 406fe81d6..bcb98cb47 100644
--- a/perl-install/install2.pm
+++ b/perl-install/install2.pm
@@ -1,3 +1,4 @@
+
package install2;
use diagnostics;
@@ -87,12 +88,11 @@ my @install_classes = (__("beginner"), __("developer"), __("server"), __("expert
#-#####################################################################################
#- partition layout
my %suggestedPartitions = (
- beginner => my $b = [
+ normal => my $b = [
{ mntpoint => "/", size => 700 << 11, type => 0x83 },
{ mntpoint => "swap", size => 128 << 11, type => 0x82 },
{ mntpoint => "/home", size => 300 << 11, type => 0x83 },
],
- normal => $b,
developer => [
{ mntpoint => "/boot", size => 16 << 11, type => 0x83 },
{ mntpoint => "swap", size => 128 << 11, type => 0x82 },
@@ -108,9 +108,6 @@ my %suggestedPartitions = (
{ mntpoint => "/var", size => 600 << 11, type => 0x83 },
{ mntpoint => "/home", size => 500 << 11, type => 0x83 },
],
- expert => [
- { mntpoint => "/", size => 200 << 11, type => 0x83 },
- ],
);
#-#######################################################################################