From b160c968b2e89976b3ff8fdb383037e3a0d6fd20 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 28 Aug 2025 11:50:15 +0200 Subject: [PATCH] Replace symlinks with copies for SSL files --- collabora/rootfs/etc/cont-init.d/99-run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/collabora/rootfs/etc/cont-init.d/99-run.sh b/collabora/rootfs/etc/cont-init.d/99-run.sh index 8d656dda0..c09ba1f18 100755 --- a/collabora/rootfs/etc/cont-init.d/99-run.sh +++ b/collabora/rootfs/etc/cont-init.d/99-run.sh @@ -45,9 +45,9 @@ if bashio::config.true 'ssl'; then bashio::log.error "Key file /ssl/${keyfile} not found" exit 1 fi - ln -sf /ssl/${keyfile} /etc/coolwsd/key.pem - ln -sf /ssl/${certfile} /etc/coolwsd/cert.pem - ln -sf /ssl/${certfile} /etc/coolwsd/ca-chain.cert.pem + cp -f /ssl/${keyfile} /etc/coolwsd/key.pem + cp -f /ssl/${certfile} /etc/coolwsd/cert.pem + cp -f /ssl/${certfile} /etc/coolwsd/ca-chain.cert.pem extra_params="${extra_params/--o:ssl.enable=false/}" extra_params="${extra_params} \ --o:ssl.enable=true