diff --git a/.templates/ha_autoapps.sh b/.templates/ha_autoapps.sh index 3b2c6051e..4387ee086 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 @@ -20,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 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 diff --git a/jellyseerr/Dockerfile b/jellyseerr/Dockerfile index f6992ee8b..94d032fe6 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 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" +}