about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/geospatial/geoserver/data-dir.patch
blob: 86932162799849fcf861a5b4fe94dec33590bdf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- 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