From 20f4ddc16fb4bab2f07dbbef3583d498c3ff640a Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 12 Feb 2023 15:09:18 +0100 Subject: [PATCH] Adapt to s6 logic --- immich/rootfs/entrypoint.sh | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100755 immich/rootfs/entrypoint.sh diff --git a/immich/rootfs/entrypoint.sh b/immich/rootfs/entrypoint.sh deleted file mode 100755 index 68c3fec4d..000000000 --- a/immich/rootfs/entrypoint.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -echo "Starting..." - -#################### -# Starting scripts # -#################### - -for SCRIPTS in /etc/cont-init.d/*; do - [ -e "$SCRIPTS" ] || continue - echo "$SCRIPTS: executing" - chown "$(id -u)":"$(id -g)" "$SCRIPTS" - chmod a+x "$SCRIPTS" - # Change shebang if no s6 supervision - sed -i 's|/usr/bin/with-contenv bashio|/usr/bin/env bashio|g' "$SCRIPTS" - /."$SCRIPTS" || echo "$SCRIPTS: exiting $?" -done