summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-11-06 15:30:56 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-11-06 15:30:56 +0000
commit2fd889c2d9cc5fe117a81dd04c2166d267b5ef71 (patch)
treec6df943e330bedc7770f7319c82e07df95498735 /perl-install/install_steps_interactive.pm
parente2d5910163e6a0c415ea08a3b4dc7a047803d963 (diff)
downloaddrakx-backup-do-not-use-2fd889c2d9cc5fe117a81dd04c2166d267b5ef71.tar
drakx-backup-do-not-use-2fd889c2d9cc5fe117a81dd04c2166d267b5ef71.tar.gz
drakx-backup-do-not-use-2fd889c2d9cc5fe117a81dd04c2166d267b5ef71.tar.bz2
drakx-backup-do-not-use-2fd889c2d9cc5fe117a81dd04c2166d267b5ef71.tar.xz
drakx-backup-do-not-use-2fd889c2d9cc5fe117a81dd04c2166d267b5ef71.zip
no_comment
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index d2652c092..72468ffcc 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -105,7 +105,7 @@ sub selectInstallClass($@) {
);
my $installClass = ${{reverse %c}}{$o->ask_from_list(_("Install Class"),
_("What installation class do you want?"),
- [ map { $c{$_} } @c ], $c{$o->{installClass}} || $c{specific})};
+ [ map { $c{$_} } @c ], $c{$o->{installClass}} || $c{beginner})};
$::expert = $installClass eq "expert";
$::beginner = $installClass eq "beginner";
@@ -113,6 +113,7 @@ sub selectInstallClass($@) {
$o->{installClass} = $installClass;
} else {
my %c = (
+ normal => _("Normal"),
developer => _("Developement"),
server => _("Server"),
);