From e47e8a8bfe35af54d9f52f1d347460a23e02bbf4 Mon Sep 17 00:00:00 2001 From: low012 Date: Sun, 29 Nov 2009 19:36:15 +0000 Subject: [PATCH] *) corrected classpath settings git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6505 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- reconfigureYACY.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reconfigureYACY.sh b/reconfigureYACY.sh index a9ab4e499..bc8b61469 100755 --- a/reconfigureYACY.sh +++ b/reconfigureYACY.sh @@ -112,8 +112,8 @@ change_admin_password() if [ $INPUT1 == $INPUT2 ] then - BASE64=`$JAVA -cp classes net/yacy/kelondro/order/Base64Order -es "$USERNAME:$INPUT1"` - B64MD5=`$JAVA -cp classes net/yacy/kelondro/order/Digest -strfhex "$BASE64"` + BASE64=`$JAVA -classpath lib/yacycore.jar net.yacy.kelondro.order.Base64Order -es "$USERNAME:$INPUT1"` + B64MD5=`$JAVA -classpath lib/yacycore.jar net/yacy/kelondro/order/Digest -strfhex "$BASE64"` B64MD5=`echo $B64MD5 | sed "s/\(\S\) .*/\1/"` replace_parameter 'adminAccountBase64MD5' "$B64MD5" else