depot/pkgs/by-name/ge/geoserver/data-dir.patch
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

18 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