summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS3
-rwxr-xr-xperl-install/standalone/finish-install5
2 files changed, 7 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index dab128a1e..cc88f8d4e 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,6 +1,9 @@
- harddrake:
o do not auto-configure CD-Rom drives in fstab, it fordbids
umounting with hal (install does not configure them in fstab either)
+- finish-install:
+ o write autologin settings after user creation only
+ (so that home is set and exists, should partly fix GNOME autologin)
Version 10.4.207 - 21 September 2007, by Thierry Vignaud
diff --git a/perl-install/standalone/finish-install b/perl-install/standalone/finish-install
index 967bdacf6..8dd17fb6f 100755
--- a/perl-install/standalone/finish-install
+++ b/perl-install/standalone/finish-install
@@ -88,13 +88,16 @@ sub ask_users() {
my $users = [];
any::ask_user($in, $users, $security);
my $old_user = $conf{USER_RENAME_FROM};
+ my $old_autologin;
if (@$users && $old_user) {
$users->[0]{rename_from} = $old_user;
$users->[0]{home} ||= '/home/' . $users->[0]{name};
my $autologin = any::get_autologin();
- $autologin->{autologin} eq $old_user and any::set_autologin($in->do_pkgs, $users->[0]{name}, $autologin->{desktop});
+ $old_autologin = $autologin->{autologin} eq $old_user && $autologin->{desktop};
}
any::add_users($users, $authentication);
+ any::set_autologin($in->do_pkgs, $users->[0]{name}, $old_autologin)
+ if $old_autologin;
}
sub ask_glx() {