From cae31687d2ae5927247e161a4ddc4a18460711ff Mon Sep 17 00:00:00 2001 From: "tobias.dillig" Date: Tue, 5 Nov 2024 17:51:07 +0100 Subject: [PATCH] fix: jdbcstore.properties wrong filename --- scripts/functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/functions.sh b/scripts/functions.sh index e8a6f6e6..cc1587a5 100644 --- a/scripts/functions.sh +++ b/scripts/functions.sh @@ -586,9 +586,9 @@ function setup_jdbc_db_store() { envsubst < /build_data/jdbcconfig/jdbcconfig.properties > "${GEOSERVER_DATA_DIR}"/jdbcconfig/jdbcconfig.properties fi if [[ -f "${EXTRA_CONFIG_DIR}"/jdbcstore.properties ]]; then - envsubst < "${EXTRA_CONFIG_DIR}"/jdbcstore.properties > "${GEOSERVER_DATA_DIR}"/jdbcstore/jdbcstore.propertiesproperties + envsubst < "${EXTRA_CONFIG_DIR}"/jdbcstore.properties > "${GEOSERVER_DATA_DIR}"/jdbcstore/jdbcstore.properties else - envsubst < /build_data/jdbcstore/jdbcstore.properties > "${GEOSERVER_DATA_DIR}"/jdbcstore/jdbcstore.propertiesproperties + envsubst < /build_data/jdbcstore/jdbcstore.properties > "${GEOSERVER_DATA_DIR}"/jdbcstore/jdbcstore.properties fi check_jdbc_store_table=$(psql -d "$POSTGRES_DB" -p "${POSTGRES_PORT}" -U "${POSTGRES_USER}" -h "${HOST}" -tAc "SELECT EXISTS(SELECT 1 from information_schema.tables where table_name = 'resources')")