diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-04-05 15:21:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-04-05 15:21:37 +0000 |
commit | fccabef5bb06627331fa4d0d8337eb1d36226d3c (patch) | |
tree | 8795876b2c98ebcd0d7f311cf6cbc1750c4cb534 /perl-install/any.pm | |
parent | f6131777949414385eddec3b956ea80c5a41db20 (diff) | |
download | drakx-fccabef5bb06627331fa4d0d8337eb1d36226d3c.tar drakx-fccabef5bb06627331fa4d0d8337eb1d36226d3c.tar.gz drakx-fccabef5bb06627331fa4d0d8337eb1d36226d3c.tar.bz2 drakx-fccabef5bb06627331fa4d0d8337eb1d36226d3c.tar.xz drakx-fccabef5bb06627331fa4d0d8337eb1d36226d3c.zip |
ask for autologin
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 7 |
1 files changed, 3 insertions, 4 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}; } } |