From 3a0c87039a92a21c517dfe3694f4b26dc73b785c Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 25 Jun 2025 16:45:17 +0200 Subject: [PATCH] Remove config_location --- resiliosync/Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/resiliosync/Dockerfile b/resiliosync/Dockerfile index 91a41df78..5681eb695 100644 --- a/resiliosync/Dockerfile +++ b/resiliosync/Dockerfile @@ -32,9 +32,7 @@ ENV S6_CMD_WAIT_FOR_SERVICES=1 \ # hadolint ignore=SC2015,DL4006,SC2013,SC2086 RUN \ sed -i "s|bash|bashio|g" /etc/s6-overlay/s6-rc.d/svc-resilio-sync/run \ - && sed -i "s|/config/sync.conf|\$(bashio::config 'config_location')/sync.conf|g" /etc/s6-overlay/s6-rc.d/svc-resilio-sync/run \ && sed -i "s|bash|bashio|g" /etc/s6-overlay/s6-rc.d/init-resilio-sync-config/run \ - && sed -i "s|/config/sync.conf|\$(bashio::config 'config_location')/sync.conf|g" /etc/s6-overlay/s6-rc.d/init-resilio-sync-config/run \ \ # Correct sync folder && for file in $(grep -Esril "/sync[ '\"/]|/sync\$" /etc/logrotate.d /defaults /etc/cont-init.d /etc/services.d /etc/s6-overlay/s6-rc.d); do sed -i "s=/sync=/share/resiliosync=g" $file; done \