From 4361299a0eb721ffce661806478321458a7ec550 Mon Sep 17 00:00:00 2001 From: gyurix Date: Tue, 2 Sep 2025 11:56:06 +0200 Subject: [PATCH] Update system list in entrypoint script to include local-loadbalancer.json --- scripts/scheduler/entrypoint.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/scheduler/entrypoint.sh b/scripts/scheduler/entrypoint.sh index 9d97466..66cb872 100644 --- a/scripts/scheduler/entrypoint.sh +++ b/scripts/scheduler/entrypoint.sh @@ -1017,8 +1017,7 @@ execute_task() { JSON_TARGET=$B64_JSON elif [ "$TASK_NAME" == "system" ]; then - #SYSTEM_LIST="core-dns.json cron.json domain-local-backend.json firewall-letsencrypt.json firewall-local-backend.json firewall-localloadbalancer-dns.json firewall-localloadbalancer-to-smarthostbackend.json firewall-smarthost-backend-dns.json firewall-smarthost-loadbalancer-dns.json firewall-smarthost-to-backend.json firewall-smarthostloadbalancer-from-publicbackend.json letsencrypt.json local-backend.json local-proxy.json service-framework.json smarthost-proxy-scheduler.json smarthost-proxy.json" - SYSTEM_LIST="core-dns.json cron.json letsencrypt.json local-proxy.json service-framework.json smarthost-proxy-scheduler.json smarthost-proxy.json" + SYSTEM_LIST="core-dns.json cron.json letsencrypt.json local-loadbalancer.json service-framework.json smarthost-proxy-scheduler.json smarthost-proxy.json" INSTALLED_SERVICES=$(ls /etc/user/config/services/*.json) SERVICES="" for SERVICE in $(echo $INSTALLED_SERVICES); do @@ -1058,7 +1057,7 @@ execute_task() { JSON_TARGET=$(echo '{ "DATE": "'$DATE'", "INSTALL_STATUS": "'$INSTALL_STATUS'", "INSTALLED_SERVICES": {'$SERVICES'} }' | jq -r . | base64 -w0) elif [ "$TASK_NAME" == "services" ]; then - SYSTEM_LIST="core-dns.json cron.json letsencrypt.json local-proxy.json service-framework.json smarthost-proxy-scheduler.json smarthost-proxy.json" + SYSTEM_LIST="core-dns.json cron.json letsencrypt.json local-loadbalancer.json service-framework.json smarthost-proxy-scheduler.json smarthost-proxy.json" INSTALLED_SERVICES=$(ls /etc/user/config/services/*.json) SERVICES="" for SERVICE in $(echo $INSTALLED_SERVICES); do