diff options
author | Mystery Man 553 <uid553@mandriva.org> | 2001-02-12 22:53:38 +0000 |
---|---|---|
committer | Mystery Man 553 <uid553@mandriva.org> | 2001-02-12 22:53:38 +0000 |
commit | 63a6ace592e76e35c9144a71fa8eb4a21304509f (patch) | |
tree | c82f1d44b1df901a46a6547b0e6457bcb289b8c4 /perl-install/any.pm | |
parent | de59da7a96da791314f78c5fa06274bfd480aa13 (diff) | |
download | drakx-63a6ace592e76e35c9144a71fa8eb4a21304509f.tar drakx-63a6ace592e76e35c9144a71fa8eb4a21304509f.tar.gz drakx-63a6ace592e76e35c9144a71fa8eb4a21304509f.tar.bz2 drakx-63a6ace592e76e35c9144a71fa8eb4a21304509f.tar.xz drakx-63a6ace592e76e35c9144a71fa8eb4a21304509f.zip |
auto_allocate partitions choice modified. diskdrake in expert asks what kind
of auto_allocation is wanted, others choose 'simple' in %fsedit::suggestions
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index a5b3f3074..ccad02480 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -253,6 +253,14 @@ arch() !~ /sparc/ ? ( 1; } +sub partitions_suggestions { + my ($in) = @_; + my $t = $::expert ? + $in->ask_from_list_('', _("What type of partitioning?"), [ keys %fsedit::suggestions ]) : + 'simple'; + $fsedit::suggestions{$t}; +} + my @etc_pass_fields = qw(name pw uid gid realname home shell); sub unpack_passwd { my ($l) = @_; |