nixpkgs/pkgs/servers/geospatial/geoserver/data-dir.patch
Ivan Mincik 9f98f2904b geoserver: fix startup script
Set GEOSERVER_DATA_DIR to current working
directory if not provided.
2023-11-17 23:30:47 +01:00

19 lines
616 B
Diff

--- a/bin/startup.sh
+++ b/bin/startup.sh
@@ -66,12 +66,9 @@ fi
#Find the configuration directory: GEOSERVER_DATA_DIR
if [ -z "${GEOSERVER_DATA_DIR:-}" ]; then
- if [ -r "${GEOSERVER_HOME}/data_dir" ]; then
- export GEOSERVER_DATA_DIR="${GEOSERVER_HOME}/data_dir"
- else
- echo "No GEOSERVER_DATA_DIR found, using application defaults"
- GEOSERVER_DATA_DIR=""
- fi
+ echo "GEOSERVER_DATA_DIR is not provided. Using $(pwd)/geoserver/data_dir directory"
+ mkdir -p "$(pwd)"/geoserver/data_dir
+ GEOSERVER_DATA_DIR="$(pwd)/geoserver/data_dir"
fi
cd "${GEOSERVER_HOME}" || exit 1