mirror of
https://github.com/apache/lucene.git
synced 2025-02-10 03:55:46 +00:00
* Removed docker plugin from gradle builds. * Removed package docker image. * Tasks now have correct inputs/outputs/dependencies. * Move gradle help text to docker folder. * Reduce duplicated Docker layer by doing file removal and chmod in another stage. Co-authored-by: David Smiley <dsmiley@apache.org>
12 lines
187 B
Bash
Executable File
12 lines
187 B
Bash
Executable File
#!/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
|