summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/any.pm4
-rw-r--r--perl-install/authentication.pm5
2 files changed, 5 insertions, 4 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm
index 0099ecf92..7d362b166 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -100,10 +100,6 @@ sub add_users {
}
}
-sub crypt {
- my ($password, $md5) = @_;
- crypt($password, $md5 ? '$1$' . salt(8) : salt(2));
-}
sub enableShadow() {
run_program::rooted($::prefix, "pwconv") or log::l("pwconv failed");
run_program::rooted($::prefix, "grpconv") or log::l("grpconv failed");
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm
index f0bc7d517..8aefb3286 100644
--- a/perl-install/authentication.pm
+++ b/perl-install/authentication.pm
@@ -611,6 +611,11 @@ sub query_srv_names {
map { $_->target } $query->answer;
}
+sub crypt {
+ my ($password, $md5) = @_;
+ crypt($password, $md5 ? '$1$' . salt(8) : salt(2));
+}
+
sub user_crypted_passwd {
my ($u, $isMD5) = @_;
$u->{password} ? &crypt($u->{password}, $isMD5) : $u->{pw} || '';