From 9ca55fe5b2f1be071f4375e40e8c93fbee0312c6 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 9 Sep 2023 20:07:22 +0200 Subject: [PATCH 1/5] Update Dockerfile --- jellyseerr/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/jellyseerr/Dockerfile b/jellyseerr/Dockerfile index 3c783ce57..da6ea2454 100644 --- a/jellyseerr/Dockerfile +++ b/jellyseerr/Dockerfile @@ -35,6 +35,7 @@ RUN if grep -qr "lsio" /etc; then /ha_lsio.sh "$CONFIGLOCATION"; fi && rm /ha_ls # Avoid custom-init.d duplications ARG CONFIGLOCATION="/config/addons_config/jellyseerr" +# hadolint ignore=SC2086 RUN \ for file in $(grep -sril "/app/config" /app /etc); do sed -i "s=/app/config=$CONFIGLOCATION=g" $file; done From 6e9c5d8bd2e2e212a7781cda362e54632a07f1cc Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 9 Sep 2023 20:14:02 +0200 Subject: [PATCH 2/5] Update ha_autoapps.sh --- .templates/ha_autoapps.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.templates/ha_autoapps.sh b/.templates/ha_autoapps.sh index 3b2c6051e..73d6e803c 100755 --- a/.templates/ha_autoapps.sh +++ b/.templates/ha_autoapps.sh @@ -6,6 +6,7 @@ ############################## PACKAGES="$1" +echo "To install : $PACKAGES" # Install bash if needed if ! command -v bash >/dev/null 2>/dev/null; then From a86bd01643375dd9d46c5857ec11947052194549 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 9 Sep 2023 20:14:17 +0200 Subject: [PATCH 3/5] Update ha_automodules.sh --- .templates/ha_automodules.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.templates/ha_automodules.sh b/.templates/ha_automodules.sh index b8752752c..47caa133d 100755 --- a/.templates/ha_automodules.sh +++ b/.templates/ha_automodules.sh @@ -6,6 +6,7 @@ ############################## MODULES="$1" +echo "To download : $MODULES" # Install bash if not available if ! command -v bash >/dev/null 2>/dev/null; then From 2c65227f3c6358102304ba203275f837a3b89052 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 9 Sep 2023 20:14:33 +0200 Subject: [PATCH 4/5] Update config.json --- test/config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/config.json b/test/config.json index d98924597..3843d2a7c 100644 --- a/test/config.json +++ b/test/config.json @@ -31,5 +31,5 @@ }, "slug": "test", "url": "https://github.com/alexbelgium/hassio-addons/tree/master/addons_updater", - "version": "test5" -} \ No newline at end of file + "version": "test6" +} From 7e37576b8e5fece1623b00f401a1680014639be6 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 9 Sep 2023 20:17:56 +0200 Subject: [PATCH 5/5] Update ha_autoapps.sh --- .templates/ha_autoapps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.templates/ha_autoapps.sh b/.templates/ha_autoapps.sh index 73d6e803c..4387ee086 100755 --- a/.templates/ha_autoapps.sh +++ b/.templates/ha_autoapps.sh @@ -21,7 +21,7 @@ fi # Call apps installer script if needed curl -f -L -s -S "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/automatic_packages.sh" --output /automatic_packages.sh chmod 777 /automatic_packages.sh -eval /./automatic_packages.sh "${PACKAGES:-}" +eval /./automatic_packages.sh "${PACKAGES:-bash}" # Clean rm /automatic_packages.sh