diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 1f4cbf595..e5b4553ee 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -642,8 +642,9 @@ sub setRootPassword { my ($o) = @_; my $p = $o->{prefix}; my $u = $o->{superuser} ||= {}; - local $o->{superuser}{name} = 'root'; + $o->{superuser}{name} = 'root'; any::write_passwd_user($o->{prefix}, $o->{superuser}, $o->{authentication}{md5}); + delete $o->{superuser}{name}; } #------------------------------------------------------------------------------ |