summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-11-07 11:52:51 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-11-07 11:52:51 +0000
commite9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed (patch)
tree6d1b334d8a1cd664289f674aa537be6d4344158f /perl-install/install_steps_interactive.pm
parent96510efce15225384a474e81ef2ea91d1ae3a4ee (diff)
downloaddrakx-backup-do-not-use-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.tar
drakx-backup-do-not-use-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.tar.gz
drakx-backup-do-not-use-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.tar.bz2
drakx-backup-do-not-use-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.tar.xz
drakx-backup-do-not-use-e9d5cd96b2054cad8cca21bc1e7c10e4f4e135ed.zip
no_comment
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm21
1 files changed, 8 insertions, 13 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 609187640..533926784 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -97,20 +97,20 @@ sub selectRootPartition($@) {
#------------------------------------------------------------------------------
sub selectInstallClass($@) {
my ($o, @classes) = @_;
- my @c = qw(normal specific expert);
+ my @c = qw(beginner specific expert);
my %c = (
- normal => _("Recommended"),
+ beginner => _("Recommended"),
specific => _("Personalized"),
expert => _("Expert"),
);
my $installClass = ${{reverse %c}}{$o->ask_from_list(_("Install Class"),
_("What installation class do you want?"),
- [ map { $c{$_} } @c ], $c{$o->{installClass}} || $c{normal})};
+ [ map { $c{$_} } @c ], $c{$o->{installClass}} || $c{beginner})};
$::expert = $installClass eq "expert";
- $::beginner = $installClass eq "normal";
+ $::beginner = $installClass eq "beginner";
if ($::beginner) {
- $o->{installClass} = $installClass;
+ $o->{installClass} = "normal";
} else {
my %c = (
normal => _("Normal"),
@@ -646,10 +646,10 @@ sub addUser($) {
},
complete => sub {
$u->{password} eq $u->{password2} or $o->ask_warn('', [ _("The passwords do not match"), _("Please try again") ]), return (1,3);
- #(length $u->{password} < 6) and $o->ask_warn('', _("This password is too simple")), return (1,2);
+ $o->{security} > 3 && length($u->{password}) < 6 and $o->ask_warn('', _("This password is too simple")), return (1,2);
$u->{name} or $o->ask_warn('', _("Please give a user name")), return (1,0);
$u->{name} =~ /^[a-z0-9_-]+$/ or $o->ask_warn('', _("The user name must contain only lower cased letters, numbers, `-' and `_'")), return (1,0);
- member($u->{name}, map { $_->{name} } @{$u->{users}}) and $o->ask_warn('', _("This user name is already added")), return (1,0);
+ member($u->{name}, map { $_->{name} } @{$o->{users}}) and $o->ask_warn('', _("This user name is already added")), return (1,0);
return 0;
},
)) {
@@ -822,12 +822,7 @@ sub miscellaneous {
);
my $u = $o->{miscellaneous} ||= {};
exists $u->{LAPTOP} or $u->{LAPTOP} = 1;
- my $s = $o->{security} || ${{
- beginner => 2,
- developer => 3,
- server => 4,
- expert => 3
- }}{$o->{installClass}};
+ my $s = $o->{security};
$s = $l{$s} || $s;
!$::beginner || $clicked and $o->ask_from_entries_ref('',