mirror of https://github.com/apache/lucene.git
12 lines
187 B
Plaintext
12 lines
187 B
Plaintext
|
#!/bin/bash
|
||
|
# stop the background Solr, and restore the normal configuration
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [[ "$VERBOSE" == "yes" ]]; then
|
||
|
set -x
|
||
|
fi
|
||
|
|
||
|
echo "Shutting down the background Solr"
|
||
|
solr stop
|