From 1c966608488a3ae3696a0885783ae1c2046a8be0 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 3 Aug 2023 15:45:06 +0200 Subject: [PATCH] update --- webtop_kde/Dockerfile | 5 ++++- webtop_kde/config.json | 4 ++-- .../rootfs/etc/{cont-init.d => scripts}/00-data_location.sh | 0 webtop_kde/rootfs/etc/{cont-init.d => scripts}/20-folders.sh | 0 .../rootfs/etc/{cont-init.d => scripts}/80-configuration.sh | 0 webtop_kde/rootfs/etc/{cont-init.d => scripts}/90-ingress.sh | 0 6 files changed, 6 insertions(+), 3 deletions(-) rename webtop_kde/rootfs/etc/{cont-init.d => scripts}/00-data_location.sh (100%) mode change 100755 => 100644 rename webtop_kde/rootfs/etc/{cont-init.d => scripts}/20-folders.sh (100%) mode change 100755 => 100644 rename webtop_kde/rootfs/etc/{cont-init.d => scripts}/80-configuration.sh (100%) mode change 100755 => 100644 rename webtop_kde/rootfs/etc/{cont-init.d => scripts}/90-ingress.sh (100%) mode change 100755 => 100644 diff --git a/webtop_kde/Dockerfile b/webtop_kde/Dockerfile index ff7a31f63..22ab6eb95 100644 --- a/webtop_kde/Dockerfile +++ b/webtop_kde/Dockerfile @@ -31,7 +31,10 @@ ENV S6_CMD_WAIT_FOR_SERVICES=1 \ # hadolint ignore=SC2015,DL4006,SC2013,SC2086 RUN \ # Change home folder location - usermod --home /share/webtop_kde abc + usermod --home /share/webtop_kde abc && \ + \ + # Hook scripts + sed -i "1a /./etc/entrypoint.sh" /etc/s6-overlay/s6-rc.d/init-adduser/run # Global LSIO modifications ARG CONFIGLOCATION="/share/webtop_kde" diff --git a/webtop_kde/config.json b/webtop_kde/config.json index f348685c3..243fb9d08 100644 --- a/webtop_kde/config.json +++ b/webtop_kde/config.json @@ -126,6 +126,6 @@ "slug": "webtop-kde", "udev": true, "url": "https://github.com/alexbelgium/hassio-addons", - "version": "5.24.5-test2", + "version": "5.24.5-test3", "video": true -} +} \ No newline at end of file diff --git a/webtop_kde/rootfs/etc/cont-init.d/00-data_location.sh b/webtop_kde/rootfs/etc/scripts/00-data_location.sh old mode 100755 new mode 100644 similarity index 100% rename from webtop_kde/rootfs/etc/cont-init.d/00-data_location.sh rename to webtop_kde/rootfs/etc/scripts/00-data_location.sh diff --git a/webtop_kde/rootfs/etc/cont-init.d/20-folders.sh b/webtop_kde/rootfs/etc/scripts/20-folders.sh old mode 100755 new mode 100644 similarity index 100% rename from webtop_kde/rootfs/etc/cont-init.d/20-folders.sh rename to webtop_kde/rootfs/etc/scripts/20-folders.sh diff --git a/webtop_kde/rootfs/etc/cont-init.d/80-configuration.sh b/webtop_kde/rootfs/etc/scripts/80-configuration.sh old mode 100755 new mode 100644 similarity index 100% rename from webtop_kde/rootfs/etc/cont-init.d/80-configuration.sh rename to webtop_kde/rootfs/etc/scripts/80-configuration.sh diff --git a/webtop_kde/rootfs/etc/cont-init.d/90-ingress.sh b/webtop_kde/rootfs/etc/scripts/90-ingress.sh old mode 100755 new mode 100644 similarity index 100% rename from webtop_kde/rootfs/etc/cont-init.d/90-ingress.sh rename to webtop_kde/rootfs/etc/scripts/90-ingress.sh