Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reposotories Add-On can not be installed also after update 2024.11.4 #5423

Open
85hakois opened this issue Nov 15, 2024 · 0 comments
Open

Reposotories Add-On can not be installed also after update 2024.11.4 #5423

85hakois opened this issue Nov 15, 2024 · 0 comments
Labels

Comments

@85hakois
Copy link

Describe the issue you are experiencing

Hello,

after the failed update of Supervisor and now with Supervisor 2024.11.4 i can not install Add-Ons.

The command '/bin/ash -o pipefail -c set -x && chmod a+x /run.sh && apk add --no-cache bash bind-tools ca-certificates curl jq tzdata xz icu-libs moreutils mosquitto-clients && if [ "${BUILD_ARCH}" = "armv7" ]; then export S6_ARCH="arm"; elif [ "${BUILD_ARCH}" = "i386" ]; then export S6_ARCH="i686"; elif [ "${BUILD_ARCH}" = "amd64" ]; then export S6_ARCH="x86_64"; else export S6_ARCH="${BUILD_ARCH}"; fi && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.xz" | tar Jxvf - -C / && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz" | tar Jxvf - -C / && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-arch.tar.xz" | tar Jxvf - -C / && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-noarch.tar.xz" | tar Jxvf - -C / && mkdir -p /etc/fix-attrs.d && mkdir -p /etc/services.d && mkdir -p /usr/src/bashio && curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz" | tar -xzf - --strip 1 -C /usr/src/bashio && mv /usr/src/bashio/lib /usr/lib/bashio && ln -s /usr/lib/bashio/bashio /usr/bin/bashio && curl -L -f -s -o /usr/bin/tempio "https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}" && chmod a+x /usr/bin/tempio && rm -rf /usr/src/*' returned a non-zero code: 1

What type of installation are you running?

Home Assistant Supervised

Which operating system are you running on?

Home Assistant Operating System

Steps to reproduce the issue

1.Link for Add-On in Reposotories
2.Add-On install failed
3.
...

Anything in the Supervisor logs that might be useful for us?

2024-11-15 07:15:39.645 INFO (MainThread) [supervisor.docker.addon] Starting build for bf7963f0/amd64-addon-ism7mqtt:v0.0.17
2024-11-15 07:16:14.164 ERROR (MainThread) [supervisor.docker.addon] Can't build bf7963f0/amd64-addon-ism7mqtt:v0.0.17: The command '/bin/ash -o pipefail -c set -x     && chmod a+x /run.sh     && apk add --no-cache         bash         bind-tools         ca-certificates         curl         jq         tzdata         xz         icu-libs         moreutils         mosquitto-clients     && if [ "${BUILD_ARCH}" = "armv7" ]; then             export S6_ARCH="arm";         elif [ "${BUILD_ARCH}" = "i386" ]; then             export S6_ARCH="i686";         elif [ "${BUILD_ARCH}" = "amd64" ]; then             export S6_ARCH="x86_64";         else             export S6_ARCH="${BUILD_ARCH}";         fi         && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-arch.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-noarch.tar.xz"         | tar Jxvf - -C /     && mkdir -p /etc/fix-attrs.d     && mkdir -p /etc/services.d         && mkdir -p /usr/src/bashio     && curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz"         | tar -xzf - --strip 1 -C /usr/src/bashio     && mv /usr/src/bashio/lib /usr/lib/bashio     && ln -s /usr/lib/bashio/bashio /usr/bin/bashio         && curl -L -f -s -o /usr/bin/tempio "https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}"     && chmod a+x /usr/bin/tempio     && rm -rf /usr/src/*' returned a non-zero code: 1
2024-11-15 07:16:14.164 ERROR (MainThread) [supervisor.docker.addon] Build log: 
Step 1/15 : FROM zivillian/ism7mqtt:v0.0.17
 ---> 107d1c67ce19
Step 2/15 : ENV     LANG="C.UTF-8"     S6_OVERLAY_VERSION=3.1.2.1     S6_BEHAVIOUR_IF_STAGE2_FAILS=2     S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0     S6_CMD_WAIT_FOR_SERVICES=1     S6_SERVICES_READYTIME=50     BASHIO_VERSION=0.14.3     TEMPIO_VERSION=2021.09.0
 ---> Using cache
 ---> 352bcba10746
Step 3/15 : SHELL ["/bin/ash", "-o", "pipefail", "-c"]
 ---> Using cache
 ---> 3f9e4de6920e
Step 4/15 : COPY run.sh /
 ---> Using cache
 ---> 814895ab18da
Step 5/15 : WORKDIR /usr/src
 ---> Using cache
 ---> 7f285815d5e5
Step 6/15 : ARG BUILD_ARCH
 ---> Using cache
 ---> cf5e08ab5636
Step 7/15 : RUN     set -x     && chmod a+x /run.sh     && apk add --no-cache         bash         bind-tools         ca-certificates         curl         jq         tzdata         xz         icu-libs         moreutils         mosquitto-clients     && if [ "${BUILD_ARCH}" = "armv7" ]; then             export S6_ARCH="arm";         elif [ "${BUILD_ARCH}" = "i386" ]; then             export S6_ARCH="i686";         elif [ "${BUILD_ARCH}" = "amd64" ]; then             export S6_ARCH="x86_64";         else             export S6_ARCH="${BUILD_ARCH}";         fi         && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-arch.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-noarch.tar.xz"         | tar Jxvf - -C /     && mkdir -p /etc/fix-attrs.d     && mkdir -p /etc/services.d         && mkdir -p /usr/src/bashio     && curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz"         | tar -xzf - --strip 1 -C /usr/src/bashio     && mv /usr/src/bashio/lib /usr/lib/bashio     && ln -s /usr/lib/bashio/bashio /usr/bin/bashio         && curl -L -f -s -o /usr/bin/tempio "https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}"     && chmod a+x /usr/bin/tempio     && rm -rf /usr/src/*
 ---> Running in 2aea1557c609
+ chmod
 a+x /run.sh
+ apk add --no-cache bash bind-tools ca-certificates curl jq tzdata xz icu-libs moreutils mosquitto-clients
fetch https://dl-cdn.alpinelinux.org/alpine/v3.20/main/x86_64/APKINDEX.tar.gz
fetch https://dl-cdn.alpinelinux.org/alpine/v3.20/community/x86_64/APKINDEX.tar.gz
(1/42) Installing ncurses-terminfo-base (6.4_p20240420-r2)
(2/42) Installing libncursesw (6.4_p20240420-r2)
(3/42) Installing readline (8.2.10-r0)
(4/42) Installing bash (5.2.26-r0)
Executing bash-5.2.26-r0.post-install
(5/42) Installing fstrm (0.6.1-r4)
(6/42) Installing krb5-conf (1.0-r2)
(7/42) Installing libcom_err (1.47.0-r5)
(8/42) Installing keyutils-libs (1.6.3-r3)
(9/42) Installing libverto (0.3.2-r2)
(10/42) Installing krb5-libs (1.21.3-r0)
(11/42) Installing json-c (0.17-r0)
(12/42) Installing nghttp2-libs (1.62.1-r0)
(13/42) Installing protobuf-c (1.5.0-r0)
(14/42) Installing libuv (1.48.0-r0)
(15/42) Installing xz-libs (5.6.2-r0)
(16/42) Installing libxml2 (2.12.7-r0)
(17/42) Installing bind-libs (9.18.27-r0)
(18/42) Installing bind-tools (9.18.27-r0)
(19/42) Installing ca-certificates (20240705-r0)
(20/42) Installing brotli-libs (1.1.0-r2)
(21/42) Installing c-ares (1.33.1-r0)
(22/42) Installing libunistring (1.2-r0)
(23/42) Installing libidn2 (2.3.7-r0)
(24/42) Installing libpsl (0.21.5-r1)
(25/42) Installing zstd-libs (1.5.6-r0)
(26/42) Installing libcurl (8.11.0-r2)
(27/42) Installing curl (8.11.0-r2)
(28/42) Installing icu-data-en (74.2-r0)
Executing icu-data-en-74.2-r0.post-install
*
* If you need ICU with non-English locales and legacy charset support, install
* package icu-data-full.
*
(29/42) Installing icu-libs (74.2-r0)
(30/42) Installing oniguruma (6.9.9-r0)
(31/42) Installing jq (1.7.1-r0)
(32/42) Installing libbz2 (1.0.8-r6)
(33/42) Installing perl (5.38.2-r0)
(34/42) Installing perl-timedate (2.33-r4)
(35/42) Installing perl-io-tty (1.20-r0)
(36/42) Installing perl-ipc-run (20231003.0-r0)
(37/42) Installing moreutils (0.69-r0)
(38/42) Installing cjson (1.7.18-r0)
(39/42) Installing mosquitto-libs (2.0.18-r0)
(40/42) Installing mosquitto-clients (2.0.18-r0)
(41/42) Installing tzdata (2024b-r0)
(42/42) Installing xz (5.6.2-r0)
Executing busybox-1.36.1-r29.trigger
Executing ca-certificates-20240705-r0.trigger
OK: 76 MiB in 58 packages
+ '[' amd64 '=' armv7 ]
+ '[' amd64 '=' i386 ]
+ 
'[' amd64 '=' amd64 ]
+ export 'S6_ARCH=x86_64'
+ curl -L -f -s https://github.com/just-containers/s6-overlay/releases/download/v3.1.2.1/s6-overlay-x86_64.tar.xz
+ tar Jxvf - -C /
tar: short read
 ---> Removed intermediate container 2aea1557c609
2024-11-15 07:27:50.968 INFO (MainThread) [supervisor.store.git] Update add-on https://github.com/brenner-tobias/ha-addons repository
2024-11-15 07:27:50.974 INFO (MainThread) [supervisor.store.git] Update add-on https://github.com/zigbee2mqtt/hassio-zigbee2mqtt repository
2024-11-15 07:27:50.981 INFO (MainThread) [supervisor.store.git] Update add-on https://github.com/music-assistant/home-assistant-addon repository
2024-11-15 07:27:50.988 INFO (MainThread) [supervisor.store.git] Update add-on https://github.com/home-assistant/addons repository
2024-11-15 07:27:51.994 INFO (MainThread) [supervisor.store.git] Update add-on https://github.com/esphome/home-assistant-addon repository
2024-11-15 07:27:51.002 INFO (MainThread) [supervisor.store.git] Update add-on https://github.com/hassio-addons/repository repository
2024-11-15 07:27:51.010 INFO (MainThread) [supervisor.store.git] Update add-on https://github.com/b3nn0/hassio-addon-ism7mqtt repository
2024-11-15 07:27:51.108 INFO (MainThread) [supervisor.updater] Fetching update data from https://version.home-assistant.io/stable.json
2024-11-15 07:27:53.534 INFO (MainThread) [supervisor.store] Loading add-ons from store: 86 all - 0 new - 0 remove
2024-11-15 07:27:53.535 INFO (MainThread) [supervisor.store] Loading add-ons from store: 86 all - 0 new - 0 remove
2024-11-15 07:38:55.185 INFO (MainThread) [supervisor.addons.addon] No bf7963f0_ism7mqtt addon Docker image bf7963f0/amd64-addon-ism7mqtt found
2024-11-15 07:38:55.188 INFO (MainThread) [supervisor.docker.addon] Starting build for bf7963f0/amd64-addon-ism7mqtt:v0.0.17
2024-11-15 07:39:22.143 ERROR (MainThread) [supervisor.docker.addon] Can't build bf7963f0/amd64-addon-ism7mqtt:v0.0.17: The command '/bin/ash -o pipefail -c set -x     && chmod a+x /run.sh     && apk add --no-cache         bash         bind-tools         ca-certificates         curl         jq         tzdata         xz         icu-libs         moreutils         mosquitto-clients     && if [ "${BUILD_ARCH}" = "armv7" ]; then             export S6_ARCH="arm";         elif [ "${BUILD_ARCH}" = "i386" ]; then             export S6_ARCH="i686";         elif [ "${BUILD_ARCH}" = "amd64" ]; then             export S6_ARCH="x86_64";         else             export S6_ARCH="${BUILD_ARCH}";         fi         && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-arch.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-noarch.tar.xz"         | tar Jxvf - -C /     && mkdir -p /etc/fix-attrs.d     && mkdir -p /etc/services.d         && mkdir -p /usr/src/bashio     && curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz"         | tar -xzf - --strip 1 -C /usr/src/bashio     && mv /usr/src/bashio/lib /usr/lib/bashio     && ln -s /usr/lib/bashio/bashio /usr/bin/bashio         && curl -L -f -s -o /usr/bin/tempio "https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}"     && chmod a+x /usr/bin/tempio     && rm -rf /usr/src/*' returned a non-zero code: 1
2024-11-15 07:39:22.143 ERROR (MainThread) [supervisor.docker.addon] Build log: 
Step 1/15 : FROM zivillian/ism7mqtt:v0.0.17
 ---> 107d1c67ce19
Step 2/15 : ENV     LANG="C.UTF-8"     S6_OVERLAY_VERSION=3.1.2.1     S6_BEHAVIOUR_IF_STAGE2_FAILS=2     S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0     S6_CMD_WAIT_FOR_SERVICES=1     S6_SERVICES_READYTIME=50     BASHIO_VERSION=0.14.3     TEMPIO_VERSION=2021.09.0
 ---> Using cache
 ---> 352bcba10746
Step 3/15 : SHELL ["/bin/ash", "-o", "pipefail", "-c"]
 ---> Using cache
 ---> 3f9e4de6920e
Step 4/15 : COPY run.sh /
 ---> Using cache
 ---> 814895ab18da
Step 5/15 : WORKDIR /usr/src
 ---> Using cache
 ---> 7f285815d5e5
Step 6/15 : ARG BUILD_ARCH
 ---> Using cache
 ---> cf5e08ab5636
Step 7/15 : RUN     set -x     && chmod a+x /run.sh     && apk add --no-cache         bash         bind-tools         ca-certificates         curl         jq         tzdata         xz         icu-libs         moreutils         mosquitto-clients     && if [ "${BUILD_ARCH}" = "armv7" ]; then             export S6_ARCH="arm";         elif [ "${BUILD_ARCH}" = "i386" ]; then             export S6_ARCH="i686";         elif [ "${BUILD_ARCH}" = "amd64" ]; then             export S6_ARCH="x86_64";         else             export S6_ARCH="${BUILD_ARCH}";         fi         && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-arch.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-noarch.tar.xz"         | tar Jxvf - -C /     && mkdir -p /etc/fix-attrs.d     && mkdir -p /etc/services.d         && mkdir -p /usr/src/bashio     && curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz"         | tar -xzf - --strip 1 -C /usr/src/bashio     && mv /usr/src/bashio/lib /usr/lib/bashio     && ln -s /usr/lib/bashio/bashio /usr/bin/bashio         && curl -L -f -s -o /usr/bin/tempio "https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}"     && chmod a+x /usr/bin/tempio     && rm -rf /usr/src/*
 ---> Running in c8382ddacf56
+ chmod a+x /run.sh
+ apk add --no-cache bash bind-tools ca-certificates curl jq tzdata xz icu-libs moreutils mosquitto-clients
fetch https://dl-cdn.alpinelinux.org/alpine/v3.20/main/x86_64/APKINDEX.tar.gz
fetch https://dl-cdn.alpinelinux.org/alpine/v3.20/community/x86_64/APKINDEX.tar.gz
(1/42) Installing ncurses-terminfo-base (6.4_p20240420-r2)
(2/42) Installing libncursesw (6.4_p20240420-r2)
(3/42) Installing readline (8.2.10-r0)
(4/42) Installing bash (5.2.26-r0)
Executing bash-5.2.26-r0.post-install
(5/42) Installing fstrm (0.6.1-r4)
(6/42) Installing krb5-conf (1.0-r2)
(7/42) Installing libcom_err (1.47.0-r5)
(8/42) Installing keyutils-libs (1.6.3-r3)
(9/42) Installing libverto (0.3.2-r2)
(10/42) Installing krb5-libs (1.21.3-r0)
(11/42) Installing json-c (0.17-r0)
(12/42) Installing nghttp2-libs (1.62.1-r0)
(13/42) Installing protobuf-c (1.5.0-r0)
(14/42) Installing libuv (1.48.0-r0)
(15/42) Installing xz-libs (5.6.2-r0)
(16/42) Installing libxml2 (2.12.7-r0)
(17/42) Installing bind-libs (9.18.27-r0)
(18/42) Installing bind-tools (9.18.27-r0)
(19/42) Installing ca-certificates (20240705-r0)
(20/42) Installing brotli-libs (1.1.0-r2)
(21/42) Installing c-ares (1.33.1-r0)
(22/42) Installing libunistring (1.2-r0)
(23/42) Installing libidn2 (2.3.7-r0)
(24/42) Installing libpsl (0.21.5-r1)
(25/42) Installing zstd-libs (1.5.6-r0)
(26/42) Installing libcurl (8.11.0-r2)
(27/42) Installing curl (8.11.0-r2)
(28/42) Installing icu-data-en (74.2-r0)
Executing icu-data-en-74.2-r0.post-install
*
* If you need ICU with non-English locales and legacy charset support, install
* package icu-data-full.
*
(29/42) Installing icu-libs (74.2-r0)
(30/42) Installing oniguruma (6.9.9-r0)
(31/42) Installing jq (1.7.1-r0)
(32/42) Installing libbz2 (1.0.8-r6)
(33/42) Installing perl (5.38.2-r0)
(34/42) Installing perl-timedate (2.33-r4)
(35/42) Installing perl-io-tty (1.20-r0)
(36/42) Installing perl-ipc-run (20231003.0-r0)
(37/42) Installing moreutils (0.69-r0)
(38/42) Installing cjson (1.7.18-r0)
(39/42) Installing mosquitto-libs (2.0.18-r0)
(40/42) Installing mosquitto-clients (2.0.18-r0)
(41/42) Installing tzdata (2024b-r0)
(42/42) Installing xz (5.6.2-r0)
Executing busybox-1.36.1-r29.trigger
Executing ca-certificates-20240705-r0.trigger
OK: 76 MiB in 58 packages
+ '['
 amd64
 '='
 armv7
 ]
+ '[' amd64 '=' i386 ]
+ '[' amd64 '=' amd64 ]
+ export 'S6_ARCH=x86_64'
+ curl -L -f -s https://github.com/just-containers/s6-overlay/releases/download/v3.1.2.1/s6-overlay-x86_64.tar.xz
+ 
tar
 Jxvf
 - -C /
tar: short read
 ---> Removed intermediate container c8382ddacf56
2024-11-15 07:39:22.864 INFO (MainThread) [supervisor.docker.addon] Starting build for bf7963f0/amd64-addon-ism7mqtt:v0.0.17
2024-11-15 07:39:59.600 ERROR (MainThread) [supervisor.docker.addon] Can't build bf7963f0/amd64-addon-ism7mqtt:v0.0.17: The command '/bin/ash -o pipefail -c set -x     && chmod a+x /run.sh     && apk add --no-cache         bash         bind-tools         ca-certificates         curl         jq         tzdata         xz         icu-libs         moreutils         mosquitto-clients     && if [ "${BUILD_ARCH}" = "armv7" ]; then             export S6_ARCH="arm";         elif [ "${BUILD_ARCH}" = "i386" ]; then             export S6_ARCH="i686";         elif [ "${BUILD_ARCH}" = "amd64" ]; then             export S6_ARCH="x86_64";         else             export S6_ARCH="${BUILD_ARCH}";         fi         && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-arch.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-noarch.tar.xz"         | tar Jxvf - -C /     && mkdir -p /etc/fix-attrs.d     && mkdir -p /etc/services.d         && mkdir -p /usr/src/bashio     && curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz"         | tar -xzf - --strip 1 -C /usr/src/bashio     && mv /usr/src/bashio/lib /usr/lib/bashio     && ln -s /usr/lib/bashio/bashio /usr/bin/bashio         && curl -L -f -s -o /usr/bin/tempio "https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}"     && chmod a+x /usr/bin/tempio     && rm -rf /usr/src/*' returned a non-zero code: 1
2024-11-15 07:39:59.600 ERROR (MainThread) [supervisor.docker.addon] Build log: 
Step 1/15 : FROM zivillian/ism7mqtt:v0.0.17
 ---> 107d1c67ce19
Step 2/15 : ENV     LANG="C.UTF-8"     S6_OVERLAY_VERSION=3.1.2.1     S6_BEHAVIOUR_IF_STAGE2_FAILS=2     S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0     S6_CMD_WAIT_FOR_SERVICES=1     S6_SERVICES_READYTIME=50     BASHIO_VERSION=0.14.3     TEMPIO_VERSION=2021.09.0
 ---> Using cache
 ---> 352bcba10746
Step 3/15 : SHELL ["/bin/ash", "-o", "pipefail", "-c"]
 ---> Using cache
 ---> 3f9e4de6920e
Step 4/15 : COPY run.sh /
 ---> Using cache
 ---> 814895ab18da
Step 5/15 : WORKDIR /usr/src
 ---> Using cache
 ---> 7f285815d5e5
Step 6/15 : ARG BUILD_ARCH
 ---> Using cache
 ---> cf5e08ab5636
Step 7/15 : RUN     set -x     && chmod a+x /run.sh     && apk add --no-cache         bash         bind-tools         ca-certificates         curl         jq         tzdata         xz         icu-libs         moreutils         mosquitto-clients     && if [ "${BUILD_ARCH}" = "armv7" ]; then             export S6_ARCH="arm";         elif [ "${BUILD_ARCH}" = "i386" ]; then             export S6_ARCH="i686";         elif [ "${BUILD_ARCH}" = "amd64" ]; then             export S6_ARCH="x86_64";         else             export S6_ARCH="${BUILD_ARCH}";         fi         && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-arch.tar.xz"         | tar Jxvf - -C /     && curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-noarch.tar.xz"         | tar Jxvf - -C /     && mkdir -p /etc/fix-attrs.d     && mkdir -p /etc/services.d         && mkdir -p /usr/src/bashio     && curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz"         | tar -xzf - --strip 1 -C /usr/src/bashio     && mv /usr/src/bashio/lib /usr/lib/bashio     && ln -s /usr/lib/bashio/bashio /usr/bin/bashio         && curl -L -f -s -o /usr/bin/tempio "https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${BUILD_ARCH}"     && chmod a+x /usr/bin/tempio     && rm -rf /usr/src/*
 ---> Running in 1ecb2a009d5b
+ chmod a+x /run.sh
+ apk add --no-cache bash bind-tools ca-certificates curl jq tzdata xz icu-libs moreutils mosquitto-clients
fetch https://dl-cdn.alpinelinux.org/alpine/v3.20/main/x86_64/APKINDEX.tar.gz
fetch https://dl-cdn.alpinelinux.org/alpine/v3.20/community/x86_64/APKINDEX.tar.gz
(1/42) Installing ncurses-terminfo-base (6.4_p20240420-r2)
(2/42) Installing libncursesw (6.4_p20240420-r2)
(3/42) Installing readline (8.2.10-r0)
(4/42) Installing bash (5.2.26-r0)
Executing bash-5.2.26-r0.post-install
(5/42) Installing fstrm (0.6.1-r4)
(6/42) Installing krb5-conf (1.0-r2)
(7/42) Installing libcom_err (1.47.0-r5)
(8/42) Installing keyutils-libs (1.6.3-r3)
(9/42) Installing libverto (0.3.2-r2)
(10/42) Installing krb5-libs (1.21.3-r0)
(11/42) Installing json-c (0.17-r0)
(12/42) Installing nghttp2-libs (1.62.1-r0)
(13/42) Installing protobuf-c (1.5.0-r0)
(14/42) Installing libuv (1.48.0-r0)
(15/42) Installing xz-libs (5.6.2-r0)
(16/42) Installing libxml2 (2.12.7-r0)
(17/42) Installing bind-libs (9.18.27-r0)
(18/42) Installing bind-tools (9.18.27-r0)
(19/42) Installing ca-certificates (20240705-r0)
(20/42) Installing brotli-libs (1.1.0-r2)
(21/42) Installing c-ares (1.33.1-r0)
(22/42) Installing libunistring (1.2-r0)
(23/42) Installing libidn2 (2.3.7-r0)
(24/42) Installing libpsl (0.21.5-r1)
(25/42) Installing zstd-libs (1.5.6-r0)
(26/42) Installing libcurl (8.11.0-r2)
(27/42) Installing curl (8.11.0-r2)
(28/42) Installing icu-data-en (74.2-r0)
Executing icu-data-en-74.2-r0.post-install
*
* If you need ICU with non-English locales and legacy charset support, install
* package icu-data-full.
*
(29/42) Installing icu-libs (74.2-r0)
(30/42) Installing oniguruma (6.9.9-r0)
(31/42) Installing jq (1.7.1-r0)
(32/42) Installing libbz2 (1.0.8-r6)
(33/42) Installing perl (5.38.2-r0)
(34/42) Installing perl-timedate (2.33-r4)
(35/42) Installing perl-io-tty (1.20-r0)
(36/42) Installing perl-ipc-run (20231003.0-r0)
(37/42) Installing moreutils (0.69-r0)
(38/42) Installing cjson (1.7.18-r0)
(39/42) Installing mosquitto-libs (2.0.18-r0)
(40/42) Installing mosquitto-clients (2.0.18-r0)
(41/42) Installing tzdata (2024b-r0)
(42/42) Installing xz (5.6.2-r0)
Executing busybox-1.36.1-r29.trigger
Executing ca-certificates-20240705-r0.trigger
OK: 76 MiB in 58 packages
+ 
'[' amd64
 '=' armv7 ]
+ '[' amd64 '=' i386 ]
+ '[' amd64 '=' amd64 ]
+ export 'S6_ARCH=x86_64'
+ curl -L -f -s https://github.com/just-containers/s6-overlay/releases/download/v3.1.2.1/s6-overlay-x86_64.tar.xz
+ tar Jxvf - -C /
tar: short read
 ---> Removed intermediate container 1ecb2a009d5b
2024-11-15 07:41:57.359 INFO (MainThread) [supervisor.homeassistant.api] Updated Home Assistant API token

System Health information

System Information

version core-2024.11.1
installation_type Home Assistant OS
dev false
hassio true
docker true
user root
virtualenv false
python_version 3.12.4
os_name Linux
os_version 6.6.54-haos
arch x86_64
timezone Europe/Berlin
config_dir /config
Home Assistant Community Store
GitHub API ok
GitHub Content ok
GitHub Web ok
HACS Data ok
GitHub API Calls Remaining 5000
Installed Version 2.0.1
Stage running
Available Repositories 1459
Downloaded Repositories 8
Home Assistant Cloud
logged_in false
can_reach_cert_server ok
can_reach_cloud_auth ok
can_reach_cloud ok
Home Assistant Supervisor
host_os Home Assistant OS 13.2
update_channel stable
supervisor_version supervisor-2024.11.4
agent_version 1.6.0
docker_version 27.2.0
disk_total 245.4 GB
disk_used 17.7 GB
healthy true
supported true
host_connectivity true
supervisor_connectivity true
ntp_synchronized true
virtualization kvm
board ova
supervisor_api ok
version_api ok
installed_addons Advanced SSH & Web Terminal (19.0.0), Studio Code Server (5.17.3), File editor (5.8.0), Mosquitto broker (6.4.1), Zigbee2MQTT (1.41.0-1), Grafana (10.2.0), Cloudflared (5.2.1), InfluxDB (5.0.1)
Dashboards
dashboards 3
resources 7
views 19
mode storage
Recorder
oldest_recorder_run 7. November 2024 um 14:06
current_recorder_run 14. November 2024 um 22:11
estimated_db_size 587.33 MiB
database_engine sqlite
database_version 3.45.3

Supervisor diagnostics

No response

Additional information

No response

@85hakois 85hakois added the bug label Nov 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant