Fix script to use md5 and not md5sum.

PR:		243110
Submitted by:	Tomoyuki Sakurai <trombik1973@gmail.com>
This commit is contained in:
Guido Falsi 2020-06-16 22:22:30 +00:00
parent b3f77acdb8
commit 6d29e326c4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=539383
2 changed files with 19 additions and 0 deletions

View File

@ -3,6 +3,7 @@
PORTNAME= ntopng
PORTVERSION= 4.0.d20200615
PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= net

View File

@ -0,0 +1,18 @@
--- httpdocs/misc/ntopng-add-user.sh.orig 2020-06-15 13:08:57 UTC
+++ httpdocs/misc/ntopng-add-user.sh
@@ -111,13 +111,13 @@ function validate_username {
function password_md5 {
#make sure the md5 utility works as expected
- local admin_md5=`echo -n admin | md5sum | cut -c 1-32`
+ local admin_md5=`echo -n admin | md5 | cut -c 1-32`
if [[ $admin_md5 != "21232f297a57a5a743894a0e4a801fc3" ]]
then
echo "md5sum not working as expected"
return 1
fi
- NTOPNG_PASSWORD_MD5=`echo -n $NTOPNG_PASSWORD | md5sum | cut -c 1-32`
+ NTOPNG_PASSWORD_MD5=`echo -n $NTOPNG_PASSWORD | md5 | cut -c 1-32`
return 0
}