diff options
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index e37a69bf3..b1dcbb78c 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -831,6 +831,13 @@ sub user_crypted_passwd { $u->{password} ? &crypt($u->{password}, $isMD5) : $u->{pw} || ''; } +sub set_root_passwd { + my ($superuser, $authentication) = @_; + $superuser->{name} = 'root'; + write_passwd_user($superuser, $authentication->{md5}); + delete $superuser->{name}; +} + sub write_passwd_user { my ($u, $isMD5) = @_; |