From fccabef5bb06627331fa4d0d8337eb1d36226d3c Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 5 Apr 2001 15:21:37 +0000 Subject: ask for autologin --- perl-install/any.pm | 7 +++---- perl-install/install_steps_interactive.pm | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/perl-install/any.pm b/perl-install/any.pm index 860be48f0..f20f84165 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -751,17 +751,16 @@ sub ask_users { } sub autologin { - my ($prefix, $o, $in, $install) = @_; + my ($prefix, $o, $in) = @_; my $cmd = $prefix ? "chroot $prefix" : ""; my @wm = (split (' ', `$cmd /usr/sbin/chksession -l`)); - my @users; - if (@wm && @users && !$o->{authentication}{NIS} && $ENV{SECURE_LEVEL} <= 3) { + if (@wm && !is_empty_array_ref($o->{users}) && !$o->{authentication}{NIS} && $ENV{SECURE_LEVEL} <= 3) { $in->ask_from_entries_refH(_("Autologin"), _("I can set up your computer to automatically log on one user. If you don't want to use this feature, click on the cancel button."), - [ { label => _("Choose the default user:"), val => \$o->{autologin}, list => [ '', @users ] }, + [ { label => _("Choose the default user:"), val => \$o->{autologin}, list => [ '', @{$o->{users}} ] }, { label => _("Choose the window manager to run:"), val => \$o->{desktop}, list => \@wm }, ]) or delete $o->{autologin}; } } diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 41de68d6d..9d1e9cbc2 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -918,13 +918,12 @@ sub addUser { if (($o->{security} >= 1 || $clicked)) { any::ask_users($o->{prefix}, $o, $o->{users}, $o->{security}); } + any::get_autologin($o->{prefix}, $o); + any::autologin($o->{prefix}, $o, $o); + install_steps::addUser($o); } -# any::get_autologin($o->{prefix}, $o); - - - #------------------------------------------------------------------------------ sub createBootdisk { my ($o, $first_time) = @_; -- cgit v1.2.1