diff options
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rwxr-xr-x | perl-install/standalone/finish-install | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index e61fb6625..4652808a9 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -8,6 +8,9 @@ o handle services with "-" as default chkconfig level in more places - mygtk2: o allow to create buttons with stock icons (for drakguard) +- finish-install: + o really set the superuser password when using simplified user+root + dialog (#39218) Version 10.20 - 25 March 2008 diff --git a/perl-install/standalone/finish-install b/perl-install/standalone/finish-install index ecc334896..ee8ca04f4 100755 --- a/perl-install/standalone/finish-install +++ b/perl-install/standalone/finish-install @@ -116,6 +116,9 @@ sub ask_users() { } my $autologin = any::get_autologin(); my $autologin_first = ($autologin->{autologin} eq $old_user || lc(get_conf('USER_AUTOLOGIN_FIRST')) eq "yes") && $autologin->{desktop}; + if ($superuser) { + set_authentication($superuser) or goto &ask_users; + } any::add_users($users, $authentication); any::set_autologin($in->do_pkgs, $users->[0]{name}, $autologin_first) if $autologin_first; |