diff options
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 32a0ec569..727c8f8c4 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -601,7 +601,12 @@ sub addUser { eval { commands::chown_("-r", "$u->{uid}.$u->{gid}", "$p$u->{home}") } if $u->{uid} != $u->{oldu} || $u->{gid} != $u->{oldg}; } - any::addUsers($o->{prefix}, $users); + any::addUsers($p, $users); + + $o->pkg_install("autologin") if $o->{autologin}; + any::set_autologin($p, $o->{autologin}, $o->{desktop}); + + install_any::setAuthentication($o); } #------------------------------------------------------------------------------ |