From 270a73f60b6fc4e680916a010aa40b93aedadf03 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Sat, 30 Mar 2019 17:09:51 +0100 Subject: [PATCH] system-perl: Add Digest::MD4 Digest::MD4 ist required to compute the NTLM password hash, which are now stored in ldap for vpn and eduroam. Rebuild system perl with Digest::MD4 included. --- ...rl-5.28.1-0.build.sh => perl-5.28.1-1.build.sh} | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) rename system/{perl-5.28.1-0.build.sh => perl-5.28.1-1.build.sh} (93%) diff --git a/system/perl-5.28.1-0.build.sh b/system/perl-5.28.1-1.build.sh similarity index 93% rename from system/perl-5.28.1-0.build.sh rename to system/perl-5.28.1-1.build.sh index d92f4a1..f816321 100755 --- a/system/perl-5.28.1-0.build.sh +++ b/system/perl-5.28.1-1.build.sh @@ -3,14 +3,14 @@ set -xe # to build system perl: # umask 022 -# sudo mkdir -p /usr/local/system/perl-5.28.1-0 -# sudo chown build:build /usr/local/system/perl-5.28.1-0 -# sudo -u build ./perl-5.28.1-0.build.sh -# sudo chown -R bin:bin /usr/local/system/perl-5.28.1-0 +# sudo mkdir -p /usr/local/system/perl-VERSION-BUILD +# sudo chown build:build /usr/local/system/perl-VERSION-BUILD +# sudo -u build ./perl-VERSION-BUILD.build.sh +# sudo chown -R bin:bin /usr/local/system/perl-VERSION-BUILD PKG=perl VERSION=5.28.1 -BUILD=0 +BUILD=1 PREFIX=/usr/local/system/$PKG-$VERSION-$BUILD if [ -n "$TESTING" ]; then PREFIX=/dev/shm/$PKG-$VERSION-$BUILD ; fi @@ -154,4 +154,8 @@ cpan LWP::Protocol::https cpan CGI cpan DBD::mysql +# password tools md4 for NTLM hash# + +cpan Digest::MD4 + exit