blob: 083be64180d2e9e78c2d6aa069b417f729190469 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env sh
cd "`dirname $0`"
. ./checkDataFolder.sh
for i in "$YACY_DATA_PATH/INDEX"/* ; do
if [ -d "$i" ]; then
echo "Checking Solr index at $i..."
java -cp "$YACY_APP_PATH/lib/*" org.apache.lucene.index.CheckIndex "$i/SEGMENTS/solr_6_6/collection1/data/index/" -exorcise
fi
done
cd ..
|