summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-02-23 22:59:47 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-02-23 22:59:47 +0000
commit7527d552a544aed46aa197ac7243793257cf63e5 (patch)
treed5b08639ce2b91377c2897554e6ad74e66e921fc /perl-install/diskdrake
parent0864bd453ab332e97212f9004bca53f491929c06 (diff)
downloaddrakx-backup-do-not-use-7527d552a544aed46aa197ac7243793257cf63e5.tar
drakx-backup-do-not-use-7527d552a544aed46aa197ac7243793257cf63e5.tar.gz
drakx-backup-do-not-use-7527d552a544aed46aa197ac7243793257cf63e5.tar.bz2
drakx-backup-do-not-use-7527d552a544aed46aa197ac7243793257cf63e5.tar.xz
drakx-backup-do-not-use-7527d552a544aed46aa197ac7243793257cf63e5.zip
not_edit'able filesystem type (allow esp. a nicer newt version)
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r--perl-install/diskdrake/interactive.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index 02a5c1ac2..6ae73d9c5 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -420,7 +420,7 @@ sub Create {
{ label => _("Start sector: "), val => \$part->{start}, min => $def_start, max => ($max - min_partition_size($hd)), type => 'range' },
),
{ label => _("Size in MB: "), val => \$mb_size, min => min_partition_size($hd) >> 11, max => $def_size >> 11, type => 'range' },
- { label => _("Filesystem type: "), val => \$type, list => [ partition_table::important_types() ], not_edit => !$::expert, sort => 0 },
+ { label => _("Filesystem type: "), val => \$type, list => [ partition_table::important_types() ], sort => 0 },
{ label => _("Mount point: "), val => \$part->{mntpoint}, list => [ fsedit::suggestions_mntpoint($all_hds), '' ],
disabled => sub { my $p = { type => name2type($type) }; isSwap($p) || isNonMountable($p) }, type => 'combo', not_edit => 0,
},