From e0cfc723cfa00efc7a19939be678d08f57230633 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Tue, 5 Sep 2023 21:22:34 +0200 Subject: [PATCH] Centralize --- addons_updater/rootfs/entrypoint.sh | 25 ----------------- arpspoof/rootfs/entrypoint.sh | 25 ----------------- autobrr/rootfs/entrypoint.sh | 25 ----------------- autobrr/rootfs/etc/entrypoint.sh | 25 ----------------- baikal/rootfs/entrypoint.sh | 25 ----------------- binance-trading-bot/rootfs/entrypoint.sh | 25 ----------------- browserless_chrome/rootfs/entrypoint.sh | 25 ----------------- cloudcommander/rootfs/entrypoint.sh | 25 ----------------- enedisgateway2mqtt/rootfs/entrypoint.sh | 25 ----------------- enedisgateway2mqtt_dev/rootfs/entrypoint.sh | 25 ----------------- epicgamesfree/rootfs/entrypoint.sh | 25 ----------------- filebrowser/rootfs/entrypoint.sh | 25 ----------------- fireflyiii/rootfs/entrypoint.sh | 25 ----------------- fireflyiii_data_importer/rootfs/entrypoint.sh | 25 ----------------- .../rootfs/entrypoint.sh | 25 ----------------- flaresolverr/rootfs/entrypoint.sh | 25 ----------------- free_games_claimer/rootfs/entrypoint.sh | 25 ----------------- gazpar2mqtt/rootfs/entrypoint.sh | 25 ----------------- gitea/rootfs/entrypoint.sh | 25 ----------------- inadyn/rootfs/entrypoint.sh | 25 ----------------- jellyseerr/rootfs/entrypoint.sh | 28 ------------------- joal/rootfs/entrypoint.sh | 25 ----------------- joplin/rootfs/entrypoint.sh | 25 ----------------- nextcloud/rootfs/etc/entrypoint.sh | 28 ------------------- paperless_ngx/rootfs/entrypoint.sh | 25 ----------------- photoprism/rootfs/entrypoint.sh | 25 ----------------- postgres/rootfs/entrypoint.sh | 25 ----------------- seafile/rootfs/entrypoint.sh | 25 ----------------- sponsorblockcast/rootfs/entrypoint.sh | 25 ----------------- tandoor_recipes/rootfs/entrypoint.sh | 25 ----------------- transmission_openvpn/rootfs/entrypoint.sh | 25 ----------------- webtop_kde/config.json | 2 +- webtrees/rootfs/entrypoint.sh | 25 ----------------- wger/rootfs/entrypoint.sh | 25 ----------------- whoogle/rootfs/entrypoint.sh | 25 ----------------- zoneminder/rootfs/entrypoint.sh | 25 ----------------- 36 files changed, 1 insertion(+), 882 deletions(-) delete mode 100755 addons_updater/rootfs/entrypoint.sh delete mode 100755 arpspoof/rootfs/entrypoint.sh delete mode 100755 autobrr/rootfs/entrypoint.sh delete mode 100755 autobrr/rootfs/etc/entrypoint.sh delete mode 100755 baikal/rootfs/entrypoint.sh delete mode 100755 binance-trading-bot/rootfs/entrypoint.sh delete mode 100755 browserless_chrome/rootfs/entrypoint.sh delete mode 100755 cloudcommander/rootfs/entrypoint.sh delete mode 100755 enedisgateway2mqtt/rootfs/entrypoint.sh delete mode 100755 enedisgateway2mqtt_dev/rootfs/entrypoint.sh delete mode 100755 epicgamesfree/rootfs/entrypoint.sh delete mode 100755 filebrowser/rootfs/entrypoint.sh delete mode 100755 fireflyiii/rootfs/entrypoint.sh delete mode 100755 fireflyiii_data_importer/rootfs/entrypoint.sh delete mode 100755 fireflyiii_fints_importer/rootfs/entrypoint.sh delete mode 100755 flaresolverr/rootfs/entrypoint.sh delete mode 100755 free_games_claimer/rootfs/entrypoint.sh delete mode 100755 gazpar2mqtt/rootfs/entrypoint.sh delete mode 100755 gitea/rootfs/entrypoint.sh delete mode 100755 inadyn/rootfs/entrypoint.sh delete mode 100755 jellyseerr/rootfs/entrypoint.sh delete mode 100755 joal/rootfs/entrypoint.sh delete mode 100755 joplin/rootfs/entrypoint.sh delete mode 100755 nextcloud/rootfs/etc/entrypoint.sh delete mode 100755 paperless_ngx/rootfs/entrypoint.sh delete mode 100755 photoprism/rootfs/entrypoint.sh delete mode 100755 postgres/rootfs/entrypoint.sh delete mode 100755 seafile/rootfs/entrypoint.sh delete mode 100755 sponsorblockcast/rootfs/entrypoint.sh delete mode 100755 tandoor_recipes/rootfs/entrypoint.sh delete mode 100755 transmission_openvpn/rootfs/entrypoint.sh delete mode 100755 webtrees/rootfs/entrypoint.sh delete mode 100755 wger/rootfs/entrypoint.sh delete mode 100755 whoogle/rootfs/entrypoint.sh delete mode 100755 zoneminder/rootfs/entrypoint.sh diff --git a/addons_updater/rootfs/entrypoint.sh b/addons_updater/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/addons_updater/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/arpspoof/rootfs/entrypoint.sh b/arpspoof/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/arpspoof/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/autobrr/rootfs/entrypoint.sh b/autobrr/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/autobrr/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/autobrr/rootfs/etc/entrypoint.sh b/autobrr/rootfs/etc/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/autobrr/rootfs/etc/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/baikal/rootfs/entrypoint.sh b/baikal/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/baikal/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/binance-trading-bot/rootfs/entrypoint.sh b/binance-trading-bot/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/binance-trading-bot/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/browserless_chrome/rootfs/entrypoint.sh b/browserless_chrome/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/browserless_chrome/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/cloudcommander/rootfs/entrypoint.sh b/cloudcommander/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/cloudcommander/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/enedisgateway2mqtt/rootfs/entrypoint.sh b/enedisgateway2mqtt/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/enedisgateway2mqtt/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/enedisgateway2mqtt_dev/rootfs/entrypoint.sh b/enedisgateway2mqtt_dev/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/enedisgateway2mqtt_dev/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/epicgamesfree/rootfs/entrypoint.sh b/epicgamesfree/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/epicgamesfree/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/filebrowser/rootfs/entrypoint.sh b/filebrowser/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/filebrowser/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/fireflyiii/rootfs/entrypoint.sh b/fireflyiii/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/fireflyiii/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/fireflyiii_data_importer/rootfs/entrypoint.sh b/fireflyiii_data_importer/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/fireflyiii_data_importer/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/fireflyiii_fints_importer/rootfs/entrypoint.sh b/fireflyiii_fints_importer/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/fireflyiii_fints_importer/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/flaresolverr/rootfs/entrypoint.sh b/flaresolverr/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/flaresolverr/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/free_games_claimer/rootfs/entrypoint.sh b/free_games_claimer/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/free_games_claimer/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/gazpar2mqtt/rootfs/entrypoint.sh b/gazpar2mqtt/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/gazpar2mqtt/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/gitea/rootfs/entrypoint.sh b/gitea/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/gitea/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/inadyn/rootfs/entrypoint.sh b/inadyn/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/inadyn/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/jellyseerr/rootfs/entrypoint.sh b/jellyseerr/rootfs/entrypoint.sh deleted file mode 100755 index bb5368731..000000000 --- a/jellyseerr/rootfs/entrypoint.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash -echo "Starting..." - -############################ -# Backup Dockerfile Script # -############################ - -if [ -f /etc/cont-init.d/00-aaa_dockerfile_backup.sh ]; then - chown "$(id -u)":"$(id -g)" /etc/cont-init.d/00-aaa_dockerfile_backup.sh - chmod +x /etc/cont-init.d/00-aaa_dockerfile_backup.sh - /./etc/cont-init.d/00-aaa_dockerfile_backup.sh - rm /etc/cont-init.d/00-aaa_dockerfile_backup.sh -fi - -#################### -# 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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done diff --git a/joal/rootfs/entrypoint.sh b/joal/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/joal/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/joplin/rootfs/entrypoint.sh b/joplin/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/joplin/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/nextcloud/rootfs/etc/entrypoint.sh b/nextcloud/rootfs/etc/entrypoint.sh deleted file mode 100755 index bb5368731..000000000 --- a/nextcloud/rootfs/etc/entrypoint.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash -echo "Starting..." - -############################ -# Backup Dockerfile Script # -############################ - -if [ -f /etc/cont-init.d/00-aaa_dockerfile_backup.sh ]; then - chown "$(id -u)":"$(id -g)" /etc/cont-init.d/00-aaa_dockerfile_backup.sh - chmod +x /etc/cont-init.d/00-aaa_dockerfile_backup.sh - /./etc/cont-init.d/00-aaa_dockerfile_backup.sh - rm /etc/cont-init.d/00-aaa_dockerfile_backup.sh -fi - -#################### -# 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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done diff --git a/paperless_ngx/rootfs/entrypoint.sh b/paperless_ngx/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/paperless_ngx/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/photoprism/rootfs/entrypoint.sh b/photoprism/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/photoprism/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/postgres/rootfs/entrypoint.sh b/postgres/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/postgres/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/seafile/rootfs/entrypoint.sh b/seafile/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/seafile/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/sponsorblockcast/rootfs/entrypoint.sh b/sponsorblockcast/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/sponsorblockcast/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/tandoor_recipes/rootfs/entrypoint.sh b/tandoor_recipes/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/tandoor_recipes/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/transmission_openvpn/rootfs/entrypoint.sh b/transmission_openvpn/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/transmission_openvpn/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/webtop_kde/config.json b/webtop_kde/config.json index 33dee0bae..1ff7085b1 100644 --- a/webtop_kde/config.json +++ b/webtop_kde/config.json @@ -112,4 +112,4 @@ "url": "https://github.com/alexbelgium/hassio-addons", "version": "4.16-r0-ls89-xfce10", "video": true -} +} \ No newline at end of file diff --git a/webtrees/rootfs/entrypoint.sh b/webtrees/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/webtrees/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/wger/rootfs/entrypoint.sh b/wger/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/wger/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/whoogle/rootfs/entrypoint.sh b/whoogle/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/whoogle/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo "" diff --git a/zoneminder/rootfs/entrypoint.sh b/zoneminder/rootfs/entrypoint.sh deleted file mode 100755 index a1c102a38..000000000 --- a/zoneminder/rootfs/entrypoint.sh +++ /dev/null @@ -1,25 +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 -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?" - rm "$SCRIPTS" -done - -###################### -# Starting container # -###################### - -echo "" -echo -e "\033[0;32mStarting the upstream container\033[0m" -echo ""