From dd650156f3032f4a9bdb7223d36348ffbbf61245 Mon Sep 17 00:00:00 2001 From: alexbelgium Date: Sun, 26 Jul 2026 17:28:12 +0200 Subject: [PATCH] fix(collabora): simplify server_name log condition Co-Authored-By: Claude --- collabora/rootfs/etc/cont-init.d/99-run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collabora/rootfs/etc/cont-init.d/99-run.sh b/collabora/rootfs/etc/cont-init.d/99-run.sh index 952e6fceb1..2ccdf8594e 100755 --- a/collabora/rootfs/etc/cont-init.d/99-run.sh +++ b/collabora/rootfs/etc/cont-init.d/99-run.sh @@ -52,7 +52,7 @@ elif bashio::config.has_value 'domain1'; then export server_name bashio::log.warning "domain1 is deprecated, please use server_name instead" fi -if bashio::config.has_value 'server_name' || bashio::config.has_value 'domain1'; then +if [ -n "${server_name:-}" ]; then bashio::log.info "Collabora public hostname (server_name): ${server_name}" fi