diff options
author | damien <damien@mandriva.com> | 2000-07-20 13:19:41 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2000-07-20 13:19:41 +0000 |
commit | b24c33961667d9f06ea11480f129fbbe86f44928 (patch) | |
tree | f818793165b0b4adeab12e81549b5303a0cf0ab4 /perl-install/Xconfigurator.pm | |
parent | b3461ea470c446fc6dffea10733f8d5b98c70511 (diff) | |
download | drakx-backup-do-not-use-b24c33961667d9f06ea11480f129fbbe86f44928.tar drakx-backup-do-not-use-b24c33961667d9f06ea11480f129fbbe86f44928.tar.gz drakx-backup-do-not-use-b24c33961667d9f06ea11480f129fbbe86f44928.tar.bz2 drakx-backup-do-not-use-b24c33961667d9f06ea11480f129fbbe86f44928.tar.xz drakx-backup-do-not-use-b24c33961667d9f06ea11480f129fbbe86f44928.zip |
corrected the case were we don't have any users.
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r-- | perl-install/Xconfigurator.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index ef4ba3a6a..59ad24973 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -1026,7 +1026,7 @@ Would you like X to start when you reboot?"), 1); $l{uid} > 500, $l{name}; } cat_("$o->{prefix}/etc/passwd"); - if (exists $o->{miscellaneous}{autologuser} || $::auto || @users + if (exists $o->{miscellaneous}{autologuser} || $::auto || !@users || $in->ask_yesorno(_("Autologin at startup"), _("I can set up your computer to automatically log on one user. Would you like to use this feature?"), 1)) { |