diff options
author | pad <pad@mandriva.com> | 1999-09-05 23:11:13 +0000 |
---|---|---|
committer | pad <pad@mandriva.com> | 1999-09-05 23:11:13 +0000 |
commit | b1cae159ba301ce08f4b46371354f504eef3a38d (patch) | |
tree | d7405d5545e644e07d3468b1a160de373b0a5fcb /perl-install/install_steps_interactive.pm | |
parent | 0c77eeabed86bbe54662d435016d7290ffd74141 (diff) | |
download | drakx-b1cae159ba301ce08f4b46371354f504eef3a38d.tar drakx-b1cae159ba301ce08f4b46371354f504eef3a38d.tar.gz drakx-b1cae159ba301ce08f4b46371354f504eef3a38d.tar.bz2 drakx-b1cae159ba301ce08f4b46371354f504eef3a38d.tar.xz drakx-b1cae159ba301ce08f4b46371354f504eef3a38d.zip |
fix
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index dee757d8b..8e61ccdea 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -418,7 +418,7 @@ sub addUser($) { $o->{user} ||= {}; $o->{user}{password2} ||= $o->{user}{password}; my $u = $o->{user}; - my @fields = qw(name password password2 realname); + my @fields = qw(realname name password password2); my @shells = install_any::shells($o); @@ -430,6 +430,7 @@ sub addUser($) { {val => \$u->{shell}, list => \@shells, not_edit => !$::expert}, ], focus_out => sub { + print "int $_[0], $u->{name}, $u->{realname},\n"; ($u->{name}) = $u->{realname} =~ /\U(\S+)/ if $_[0] eq 0; }, complete => sub { |