mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-09-17 15:19:08 +02:00
fix(collabora): simplify server_name log condition
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -52,7 +52,7 @@ elif bashio::config.has_value 'domain1'; then
|
|||||||
export server_name
|
export server_name
|
||||||
bashio::log.warning "domain1 is deprecated, please use server_name instead"
|
bashio::log.warning "domain1 is deprecated, please use server_name instead"
|
||||||
fi
|
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}"
|
bashio::log.info "Collabora public hostname (server_name): ${server_name}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user