From 3e1fee6022659b49d0ac3287678f0a15cf72bd44 Mon Sep 17 00:00:00 2001 From: hael Date: Wed, 6 Aug 2025 14:05:02 +0000 Subject: [PATCH 1/2] create repo json --- scripts/scheduler/entrypoint.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/scheduler/entrypoint.sh b/scripts/scheduler/entrypoint.sh index 4889ef2..6c4264b 100644 --- a/scripts/scheduler/entrypoint.sh +++ b/scripts/scheduler/entrypoint.sh @@ -510,6 +510,10 @@ get_repositories() { local TREES="" local REPO + if [ ! -f "/etc/user/config/repositories.json" ]; then + create_repositories_json + fi + REPOS=$(jq -r .repositories[] /etc/user/config/repositories.json) # list of repos, delimiter by space for REPO in $REPOS; do From fbf15c52b5e1a4473944ed0fc09d1283a4ede319 Mon Sep 17 00:00:00 2001 From: Gyorgy Berenyi Date: Thu, 7 Aug 2025 08:21:45 +0000 Subject: [PATCH 2/2] Update scripts/scheduler/entrypoint.sh --- scripts/scheduler/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/scheduler/entrypoint.sh b/scripts/scheduler/entrypoint.sh index 6c4264b..a05b128 100644 --- a/scripts/scheduler/entrypoint.sh +++ b/scripts/scheduler/entrypoint.sh @@ -2,7 +2,7 @@ cd /scripts DEBUG_MODE=${DEBUG_MODE:-false} -VERSION=1.1.0 +VERSION=1.1.1 #DOCKER_REGISTRY_URL=${DOCKER_REGISTRY_URL:-registry.format.hu} DOCKER_REGISTRY_URL=${DOCKER_REGISTRY_URL:-safebox}