This commit is contained in:
2026-05-15 22:19:14 -07:00
commit f4f046263c
2058 changed files with 236159 additions and 0 deletions

7
clean_locks.sh Normal file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
files=$(find /var/solr -name write.lock)
if [ -n "$files" ]; then
rm $files
else
echo "No files found."
fi