diff --git a/cloudcommander/CHANGELOG.md b/cloudcommander/CHANGELOG.md index fa5030fa3..d6f77ce1e 100644 --- a/cloudcommander/CHANGELOG.md +++ b/cloudcommander/CHANGELOG.md @@ -1,4 +1,7 @@ +## 15.9.10 (04-12-2021) +- Update to latest version from coderaiser/cloudcmd + ## 15.9.9 (22-11-2021) - Update to latest version from coderaiser/cloudcmd - Allow mounting local drives by label. Just pust the label instead of sda1 for example diff --git a/cloudcommander/config.json b/cloudcommander/config.json index b99e31a5e..0aae4c962 100644 --- a/cloudcommander/config.json +++ b/cloudcommander/config.json @@ -59,8 +59,8 @@ "DROPBOX_TOKEN": "str?" }, "slug": "cloudcommander", - "upstream": "15.9.9", + "upstream": "15.9.10", "url": "https://github.com/alexbelgium/hassio-addons/tree/master/cloudcommander#readme", - "version": "15.9.9", + "version": "15.9.10", "webui": "http://[HOST]:[PORT:8000]" } diff --git a/scrutiny/CHANGELOG.md b/scrutiny/CHANGELOG.md index e1c73398f..48a50a9be 100644 --- a/scrutiny/CHANGELOG.md +++ b/scrutiny/CHANGELOG.md @@ -1,3 +1,4 @@ +- Added : "/dev/nvme0" ## 0.3.13 (26-10-2021) - Update to latest version from analogj/scrutiny diff --git a/scrutiny/Dockerfile b/scrutiny/Dockerfile index 9a2626492..71854386c 100644 --- a/scrutiny/Dockerfile +++ b/scrutiny/Dockerfile @@ -11,11 +11,8 @@ ARG TEMPIO_VERSION=2021.01.0 ARG BUILD_ARCH RUN \ - # Install script - chmod a+x /run.sh \ - \ # Add apps - && apk add --no-cache \ + apk add --no-cache \ jq \ curl \ cifs-utils \ @@ -34,7 +31,11 @@ RUN \ | tar -xzf - --strip 1 -C /tmp/bashio \ && mv /tmp/bashio/lib /usr/lib/bashio \ && ln -s /usr/lib/bashio/bashio /usr/bin/bashio \ - && rm -rf /tmp/bashio \ + && rm -rf /tmp/bashio || true + +RUN \ + # Install script + chmod a+x /run.sh \ \ # Allow UID and GID setting && sed -i 's/bash/bashio/g' /etc/cont-init.d/10-adduser \ diff --git a/scrutiny/apparmor.txt b/scrutiny/apparmor.txt index 3499d984a..38392ea55 100644 --- a/scrutiny/apparmor.txt +++ b/scrutiny/apparmor.txt @@ -42,6 +42,7 @@ profile db21ed7f_scrutiny flags=(attach_disconnected,mediate_deleted) { /dev/sde mrwkl, /dev/sdf mrwkl, /dev/sdg mrwkl, + /dev/nvme0 mrwkl, # Data access /data/** rw, diff --git a/scrutiny/config.json b/scrutiny/config.json index ae8a5c0ad..0a92f17a6 100644 --- a/scrutiny/config.json +++ b/scrutiny/config.json @@ -1,6 +1,6 @@ { "name": "Scrutiny", - "version": "0.3.13-2", + "version": "0.3.13-3", "upstream": "0.3.13", "slug": "scrutiny", "description": "Scrutiny WebUI for smartd S.M.A.R.T monitoring", @@ -29,6 +29,8 @@ "/dev/sde", "/dev/sdf", "/dev/sdg", + "/dev/nvme", + "/dev/mmcblk", "/dev/sda1", "/dev/sdb1", "/dev/sdc1", @@ -42,7 +44,12 @@ "/dev/sdd2", "/dev/sde2", "/dev/sdf2", - "/dev/sdg2" + "/dev/sdg2", + "/dev/nvme0", + "/dev/nvme1", + "/dev/nvme2", + "/dev/mmcblk0", + "/dev/mmcblk0p1" ], "privileged": [ "SYS_ADMIN", diff --git a/scrutiny/rootfs/etc/cont-init.d/00-aaa_dockerfile_backup.sh b/scrutiny/rootfs/etc/cont-init.d/00-aaa_dockerfile_backup.sh new file mode 100644 index 000000000..363810554 --- /dev/null +++ b/scrutiny/rootfs/etc/cont-init.d/00-aaa_dockerfile_backup.sh @@ -0,0 +1,35 @@ +#!/bin/bash +# If dockerfile failed install manually +if [ ! -f "/usr/bin/bashio" ]; then + echo "Bashio does not exist, executing script" + ( + ################ + # Install apps # + ################ + apk add --no-cache \ + jq \ + curl \ + cifs-utils \ + nginx + + ################### + # Install bashio # + ################## + BASHIO_VERSION=0.14.3 + mkdir -p /tmp/bashio + curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz" | + tar -xzf - --strip 1 -C /tmp/bashio + mv /tmp/bashio/lib /usr/lib/bashio + ln -s /usr/lib/bashio/bashio /usr/bin/bashio + rm -rf /tmp/bashio + + ################### + # Install tempio # + ################## + 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 + + ) >/dev/null + +fi diff --git a/teamspeak/CHANGELOG.md b/teamspeak/CHANGELOG.md index 66f7e8b76..8372cb6c5 100644 --- a/teamspeak/CHANGELOG.md +++ b/teamspeak/CHANGELOG.md @@ -1 +1,4 @@ + +## debian (04-12-2021) +- Update to latest version from mbentley/teamspeak - Initial release diff --git a/teamspeak/config.json b/teamspeak/config.json index 6c0bf563f..0fc51f0d1 100644 --- a/teamspeak/config.json +++ b/teamspeak/config.json @@ -1,5 +1,10 @@ { - "arch": ["aarch64", "amd64", "armhf", "armv7"], + "arch": [ + "aarch64", + "amd64", + "armhf", + "armv7" + ], "description": "voice communication for online gaming, education and training", "environment": { "TS3SERVER_LICENSE": "accept", @@ -9,7 +14,9 @@ "DIST_UPDATE": "1", "TS_UPDATE": "1" }, - "map": ["share:rw"], + "map": [ + "share:rw" + ], "name": "Teamspeak server", "ports": { "9987/udp": "9987",