diff --git a/bazarr/rootfs/etc/cont-init.d/20-folders.sh b/bazarr/rootfs/etc/cont-init.d/20-folders.sh index 4b8bdb7fb..0c9c7f6bb 100644 --- a/bazarr/rootfs/etc/cont-init.d/20-folders.sh +++ b/bazarr/rootfs/etc/cont-init.d/20-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash if [ ! -d /share/storage/movies ]; then echo "Creating /share/storage/movies" @@ -23,4 +23,4 @@ if [ ! -d /config/addons_config/bazarr ]; then echo "Creating /config/addons_config/bazarr" mkdir -p /config/addons_config/bazarr chown -R abc:abc /config/addons_config/bazarr -fi \ No newline at end of file +fi diff --git a/emby/rootfs/etc/cont-init.d/20-folders.sh b/emby/rootfs/etc/cont-init.d/20-folders.sh index 8f46b7ce5..516f4f95f 100644 --- a/emby/rootfs/etc/cont-init.d/20-folders.sh +++ b/emby/rootfs/etc/cont-init.d/20-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash if [ ! -d /emby ]; then echo "Creating /emby" diff --git a/filebrowser/rootfs/scripts/20-folders.sh b/filebrowser/rootfs/scripts/20-folders.sh index 03b771545..2f1a3179c 100644 --- a/filebrowser/rootfs/scripts/20-folders.sh +++ b/filebrowser/rootfs/scripts/20-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash if [ -d /config/filebrowser ]; then echo "Moving to new location /config/addons_config/filebrowser" diff --git a/flexget/rootfs/etc/cont-init.d/00-folders.sh b/flexget/rootfs/etc/cont-init.d/00-folders.sh index a6459b0d2..dfdd331ae 100644 --- a/flexget/rootfs/etc/cont-init.d/00-folders.sh +++ b/flexget/rootfs/etc/cont-init.d/00-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash slug=flexget diff --git a/jackett/rootfs/etc/cont-init.d/20-folders.sh b/jackett/rootfs/etc/cont-init.d/20-folders.sh index cd72debcd..ed18e27fa 100644 --- a/jackett/rootfs/etc/cont-init.d/20-folders.sh +++ b/jackett/rootfs/etc/cont-init.d/20-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash if [ ! -d /share/storage/movies ]; then echo "Creating /share/storage/movies" diff --git a/jellyfin/rootfs/etc/cont-init.d/20-folders.sh b/jellyfin/rootfs/etc/cont-init.d/20-folders.sh index fb332985e..53fdc3c8e 100644 --- a/jellyfin/rootfs/etc/cont-init.d/20-folders.sh +++ b/jellyfin/rootfs/etc/cont-init.d/20-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash if [ ! -d /jellyfin ]; then echo "Creating /jellyfin" diff --git a/lidarr/rootfs/etc/cont-init.d/20-folders.sh b/lidarr/rootfs/etc/cont-init.d/20-folders.sh index d0d6b4e35..8fe5bc8a5 100644 --- a/lidarr/rootfs/etc/cont-init.d/20-folders.sh +++ b/lidarr/rootfs/etc/cont-init.d/20-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash if [ ! -d /share/music ]; then echo "Creating /share/music" diff --git a/nzbget/rootfs/etc/cont-init.d/20-folders.sh b/nzbget/rootfs/etc/cont-init.d/20-folders.sh index e2b6790ec..76f6be611 100644 --- a/nzbget/rootfs/etc/cont-init.d/20-folders.sh +++ b/nzbget/rootfs/etc/cont-init.d/20-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash slug=nzbget diff --git a/ombi/rootfs/etc/cont-init.d/20-folders.sh b/ombi/rootfs/etc/cont-init.d/20-folders.sh index dbb3e91fe..a16492aea 100644 --- a/ombi/rootfs/etc/cont-init.d/20-folders.sh +++ b/ombi/rootfs/etc/cont-init.d/20-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash slug=ombi diff --git a/organizr/rootfs/etc/cont-init.d/00-folders.sh b/organizr/rootfs/etc/cont-init.d/00-folders.sh index 73c65e4d3..1bfa6a464 100644 --- a/organizr/rootfs/etc/cont-init.d/00-folders.sh +++ b/organizr/rootfs/etc/cont-init.d/00-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash if [ ! -d /data/organizr ]; then echo "Creating /data/organizr" diff --git a/paperless_ng/rootfs/etc/cont-init.d/20-folders.sh b/paperless_ng/rootfs/etc/cont-init.d/20-folders.sh index c061e6611..2e0adaa71 100644 --- a/paperless_ng/rootfs/etc/cont-init.d/20-folders.sh +++ b/paperless_ng/rootfs/etc/cont-init.d/20-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash slug=paperless diff --git a/piwigo/rootfs/etc/cont-init.d/41-folders.sh b/piwigo/rootfs/etc/cont-init.d/41-folders.sh index 9f5456608..ca44483bd 100644 --- a/piwigo/rootfs/etc/cont-init.d/41-folders.sh +++ b/piwigo/rootfs/etc/cont-init.d/41-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash ################## # SYMLINK CONFIG # @@ -40,4 +40,3 @@ fi # CORRECT CONFIG # ################## sed -i 's|E_ALL|""|g' /share/piwigo/config/config.inc.php && echo "config corrected for php error" || true - diff --git a/plex/rootfs/etc/cont-init.d/21-folders.sh b/plex/rootfs/etc/cont-init.d/21-folders.sh index afb2a6707..d4cbec12d 100644 --- a/plex/rootfs/etc/cont-init.d/21-folders.sh +++ b/plex/rootfs/etc/cont-init.d/21-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash ################## # SYMLINK CONFIG # @@ -7,8 +7,8 @@ echo "Database stored in /share/plex" if [ ! -d "/share/plex/Plex Media Server" ]; then -echo "... creating /share/plex/Plex Media Server" -mkdir -p "/share/plex/Plex Media Server" + echo "... creating /share/plex/Plex Media Server" + mkdir -p "/share/plex/Plex Media Server" fi if [ -d "/config/Library/Application Support/Plex Media Server" ]; then diff --git a/prowlarr/rootfs/etc/cont-init.d/20-folders.sh b/prowlarr/rootfs/etc/cont-init.d/20-folders.sh index 642ba3f67..2277ef1ed 100644 --- a/prowlarr/rootfs/etc/cont-init.d/20-folders.sh +++ b/prowlarr/rootfs/etc/cont-init.d/20-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash if [ -d /config/prowlarr ]; then echo "Moving to new location /config/addons_config/prowlarr" @@ -11,4 +11,4 @@ if [ ! -d /config/addons_config/prowlarr ]; then echo "Creating /config/addons_config/prowlarr" mkdir -p /config/addons_config/prowlarr chown -R abc:abc /config/addons_config/prowlarr -fi \ No newline at end of file +fi diff --git a/radarr/rootfs/etc/cont-init.d/20-folders.sh b/radarr/rootfs/etc/cont-init.d/20-folders.sh index 3bced21b4..2c5304bc4 100644 --- a/radarr/rootfs/etc/cont-init.d/20-folders.sh +++ b/radarr/rootfs/etc/cont-init.d/20-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash if [ ! -d /share/storage/movies ]; then echo "Creating /share/storage/movies" @@ -24,4 +24,3 @@ if [ ! -d /config/addons_config/radarr ]; then mkdir -p /config/addons_config/radarr chown -R abc:abc /config/addons_config/radarr fi - diff --git a/sonarr/rootfs/etc/cont-init.d/20-folders.sh b/sonarr/rootfs/etc/cont-init.d/20-folders.sh index 966892719..bdb39d1f2 100644 --- a/sonarr/rootfs/etc/cont-init.d/20-folders.sh +++ b/sonarr/rootfs/etc/cont-init.d/20-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash if [ ! -d /share/storage/movies ]; then echo "Creating /share/storage/movies" diff --git a/ubooquity/rootfs/etc/cont-init.d/20-folders.sh b/ubooquity/rootfs/etc/cont-init.d/20-folders.sh index e1e53b92b..ed56a405a 100644 --- a/ubooquity/rootfs/etc/cont-init.d/20-folders.sh +++ b/ubooquity/rootfs/etc/cont-init.d/20-folders.sh @@ -1,4 +1,4 @@ -#!/usr/bin/with-contenv bash +#!/bin/bash slug=ubooquity