From c447b65516d7a333f960415b6c508bdfa11743fc Mon Sep 17 00:00:00 2001 From: "Re:My" Date: Wed, 18 Mar 2026 17:18:07 +0100 Subject: [PATCH 1/5] Update run_valhalla.sh --- scripts/run_valhalla.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_valhalla.sh b/scripts/run_valhalla.sh index 1032f04..2403b46 100755 --- a/scripts/run_valhalla.sh +++ b/scripts/run_valhalla.sh @@ -103,7 +103,7 @@ while true; do UPDATE_OSM="True" if ! [ -f "$PBF" ]; then log_message "INFO: Downloading OSM file $PBF" - wget -nv $PBF_URL -O "$PBF" || exit 1 + wget -nv "$PBF_URL" -O "$PBF" || exit 1 UPDATE_OSM="False" fi From 9b6e397ed6657966870f66a18afe09b5aeb13a00 Mon Sep 17 00:00:00 2001 From: "Re:My" Date: Wed, 18 Mar 2026 17:22:03 +0100 Subject: [PATCH 2/5] Update update_osm.sh --- scripts/update_osm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update_osm.sh b/scripts/update_osm.sh index e07e807..fd30853 100755 --- a/scripts/update_osm.sh +++ b/scripts/update_osm.sh @@ -23,7 +23,7 @@ log_message "update-osm http_proxy set to: $http_proxy" log_message "update-osm https_proxy set to: $https_proxy" log_message "update-osm pbf_local_path set to: $pbf_local_path" -pbf=$pbf_local_path +pbf="$pbf_local_path" # Get the arguments while [ "$1" != "" ]; do From 8915d0026edc320d0ab4f4e14acf67f7a6719488 Mon Sep 17 00:00:00 2001 From: "Re:My" Date: Wed, 18 Mar 2026 18:00:46 +0100 Subject: [PATCH 3/5] fixed upercases env vars --- scripts/run_valhalla.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/run_valhalla.sh b/scripts/run_valhalla.sh index 2403b46..0c26e33 100755 --- a/scripts/run_valhalla.sh +++ b/scripts/run_valhalla.sh @@ -20,9 +20,9 @@ log_message() { } #set from .docker_env file -log_message "INFO: http_proxy set to $http_proxy" -log_message "INFO: https_proxy set to $https_proxy" -log_message "INFO: no_proxy set to $no_proxy" +log_message "INFO: HTTP_PROXY set to $HTTP_PROXY" +log_message "INFO: HTTPS_PROXY set to $HTTPS_PROXY" +log_message "INFO: NO_PROXY set to $NO_PROXY" #set from .docker_env file in conf/valhalla.conf log_message "INFO: CONCURRENCY set to $CONCURRENCY" From e58baf6d1c9e56a44b1c208745f50da4c015d258 Mon Sep 17 00:00:00 2001 From: "Re:My" Date: Wed, 18 Mar 2026 18:02:04 +0100 Subject: [PATCH 4/5] fixed upercase vars --- conf/valhalla.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/valhalla.conf b/conf/valhalla.conf index 967ccdc..aadcfd0 100644 --- a/conf/valhalla.conf +++ b/conf/valhalla.conf @@ -16,4 +16,4 @@ stdout_logfile=/app/tmp_data/logs/builder.log stdout_logfile_maxbytes=10MB # stdout_logfile=/proc/1/fd/1 # stdout_logfile_maxbytes=0 -environment=no_proxy="%(ENV_NO_PROXY)s",pbf_local_path="%(ENV_PBF_LOCAL_PATH)s",pbf_url="%(ENV_PBF_URL)s",https_proxy="%(ENV_HTTPS_PROXY)s",http_proxy="%(ENV_HTTP_PROXY)s",MAX_CACHE_SIZE="%(ENV_MAX_CACHE_SIZE)s",CONCURRENCY="%(ENV_CONCURRENCY)s",DATA_DIR="/app/data",TMP_DATA_DIR="/app/tmp_data" +environment=NO_PROXY="%(ENV_NO_PROXY)s",PBF_LOCAL_PATH="%(ENV_PBF_LOCAL_PATH)s",PBF_URL="%(ENV_PBF_URL)s",HTTPS_PROXY="%(ENV_HTTPS_PROXY)s",HTTP_PROXY="%(ENV_HTTP_PROXY)s",MAX_CACHE_SIZE="%(ENV_MAX_CACHE_SIZE)s",CONCURRENCY="%(ENV_CONCURRENCY)s",DATA_DIR="/app/data",TMP_DATA_DIR="/app/tmp_data" From 1ea096c99b1c25afe4882d7967bf6efca43219bc Mon Sep 17 00:00:00 2001 From: "Re:My" Date: Wed, 18 Mar 2026 18:08:55 +0100 Subject: [PATCH 5/5] fixed upercases env vars --- scripts/update_osm.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/update_osm.sh b/scripts/update_osm.sh index fd30853..1013c46 100755 --- a/scripts/update_osm.sh +++ b/scripts/update_osm.sh @@ -19,11 +19,11 @@ log_message() { echo "build_loop: $(date "+%Y-%m-%d %H:%M:%S") $1" } -log_message "update-osm http_proxy set to: $http_proxy" -log_message "update-osm https_proxy set to: $https_proxy" -log_message "update-osm pbf_local_path set to: $pbf_local_path" +log_message "update-osm HTTP_PROXY set to: $HTTP_PROXY" +log_message "update-osm HTTPS_PROXY set to: $HTTPS_PROXY" +log_message "update-osm PBF_LOCAL_PATH set to: $PBF_LOCAL_PATH" -pbf="$pbf_local_path" +pbf="$PBF_LOCAL_PATH" # Get the arguments while [ "$1" != "" ]; do