diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-07-01 04:54:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-07-01 04:54:49 +0000 |
commit | 85ee1c68b47036934f2651ac87e3fc49b5293dad (patch) | |
tree | dde75bd218053dce577ffee77c93e2a3f2430735 /perl-install/diskdrake | |
parent | 728ed7a373f3f9d7bd24abbed9de82891b76c281 (diff) | |
download | drakx-85ee1c68b47036934f2651ac87e3fc49b5293dad.tar drakx-85ee1c68b47036934f2651ac87e3fc49b5293dad.tar.gz drakx-85ee1c68b47036934f2651ac87e3fc49b5293dad.tar.bz2 drakx-85ee1c68b47036934f2651ac87e3fc49b5293dad.tar.xz drakx-85ee1c68b47036934f2651ac87e3fc49b5293dad.zip |
a PV has no "Options" (bugzilla #16168)
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r-- | perl-install/diskdrake/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm index a6349b9c5..dfb5c59fb 100644 --- a/perl-install/diskdrake/interactive.pm +++ b/perl-install/diskdrake/interactive.pm @@ -445,7 +445,7 @@ sub part_possible_actions { my %actions = my @l = ( N_("Mount point") => '$part->{real_mntpoint} || (!isBusy && !isSwap && !isNonMountable)', N_("Type") => '!isBusy && $::expert && (!readonly || $part->{pt_type} == 0x83)', - N_("Options") => '$::expert', + N_("Options") => '!isNonMountable && $::expert', N_("Resize") => '!isBusy && !readonly && !isSpecial || isLVM($hd) && LVM_resizable', N_("Format") => '!isBusy && !readonly && ($::expert || $::isStandalone)', N_("Mount") => '!isBusy && (hasMntpoint || isSwap) && maybeFormatted && ($::expert || $::isStandalone)', |