diff options
author | Francois Pons <fpons@mandriva.com> | 1999-11-09 17:31:24 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 1999-11-09 17:31:24 +0000 |
commit | 02b57b61aafd29a78023e242a0cf998cd93a91ee (patch) | |
tree | 604e259cea3da5ad2f046fd2e11a6c6f631dd1ba /perl-install/install_steps_interactive.pm | |
parent | 57b9b33657beba4976551212a562ac85ff22f81f (diff) | |
download | drakx-backup-do-not-use-02b57b61aafd29a78023e242a0cf998cd93a91ee.tar drakx-backup-do-not-use-02b57b61aafd29a78023e242a0cf998cd93a91ee.tar.gz drakx-backup-do-not-use-02b57b61aafd29a78023e242a0cf998cd93a91ee.tar.bz2 drakx-backup-do-not-use-02b57b61aafd29a78023e242a0cf998cd93a91ee.tar.xz drakx-backup-do-not-use-02b57b61aafd29a78023e242a0cf998cd93a91ee.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index d1f871c65..0e8571442 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -778,14 +778,14 @@ _("Append") => \$e->{append}, _("Initrd") => { val => \$e->{initrd}, list => [ eval { glob_("/boot/initrd*") } ] }, _("Read-write") => { val => \$e->{'read-write'}, type => 'bool' } ); - @l = @l[0..5] if $::beginner; + @l = @l[0..5] unless $::expert; } else { @l = ( _("Root") => { val => \$name, list => [ map { "/dev/$_->{device}" } @{$o->{fstab}} ], not_edit => !$::expert }, _("Table") => { val => \$e->{table}, list => [ '', map { "/dev/$_->{device}" } @{$o->{hds}} ], not_edit => !$::expert }, _("Unsafe") => { val => \$e->{unsafe}, type => 'bool' } ); - @l = @l[0..1] if $::beginner; + @l = @l[0..1] unless $::expert; } @l = ( _("Label") => \$e->{label}, |