From 9d553be7f88aa5925bfba237be438565d61a7de2 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 16 Nov 2021 23:41:15 +0100 Subject: [PATCH] Explicit Use --- booksonic_air/root/etc/cont-init.d/00-aaa.sh | 3 ++- cloudcommander/rootfs/scripts/00-aaa.sh | 3 ++- enedisgateway2mqtt/rootfs/scripts/00-aaa.sh | 3 ++- enedisgateway2mqtt_test/rootfs/scripts/00-aaa.sh | 3 ++- filebrowser/rootfs/scripts/00-aaa.sh | 3 ++- gazpar2mqtt/rootfs/scripts/00-aaa.sh | 3 ++- nextcloud/root/etc/cont-init.d/00-aaa.sh | 3 ++- papermerge/rootfs/etc/cont-init.d/00-aaa.sh | 3 ++- qbittorrent/rootfs/etc/cont-init.d/00-aaa.sh | 3 ++- webtrees/rootfs/script/00-aaa.sh | 3 ++- 10 files changed, 20 insertions(+), 10 deletions(-) diff --git a/booksonic_air/root/etc/cont-init.d/00-aaa.sh b/booksonic_air/root/etc/cont-init.d/00-aaa.sh index ef9ab3fb2..ea30eacf7 100644 --- a/booksonic_air/root/etc/cont-init.d/00-aaa.sh +++ b/booksonic_air/root/etc/cont-init.d/00-aaa.sh @@ -1,5 +1,6 @@ #!/bin/bash -if [ ! -f "/usr/bin/bashio" ]; then +# If dockerfile failed install manually +[ ! -f "/usr/bin/bashio" ]; then echo "Bashio does not exist, executing script" ################ diff --git a/cloudcommander/rootfs/scripts/00-aaa.sh b/cloudcommander/rootfs/scripts/00-aaa.sh index 7bbedc63c..a7f5ccbd2 100644 --- a/cloudcommander/rootfs/scripts/00-aaa.sh +++ b/cloudcommander/rootfs/scripts/00-aaa.sh @@ -1,5 +1,6 @@ #!/bin/bash -if [ ! -f "/usr/bin/bashio" ]; then +# If dockerfile failed install manually +[ ! -f "/usr/bin/bashio" ]; then echo "Bashio does not exist, executing script" ################ diff --git a/enedisgateway2mqtt/rootfs/scripts/00-aaa.sh b/enedisgateway2mqtt/rootfs/scripts/00-aaa.sh index c1df9fd74..bb77abcfc 100644 --- a/enedisgateway2mqtt/rootfs/scripts/00-aaa.sh +++ b/enedisgateway2mqtt/rootfs/scripts/00-aaa.sh @@ -1,5 +1,6 @@ #!/bin/bash -if [ ! -f "/usr/bin/bashio" ]; then +# If dockerfile failed install manually +[ ! -f "/usr/bin/bashio" ]; then echo "Bashio does not exist, executing script" ################ diff --git a/enedisgateway2mqtt_test/rootfs/scripts/00-aaa.sh b/enedisgateway2mqtt_test/rootfs/scripts/00-aaa.sh index c1df9fd74..bb77abcfc 100644 --- a/enedisgateway2mqtt_test/rootfs/scripts/00-aaa.sh +++ b/enedisgateway2mqtt_test/rootfs/scripts/00-aaa.sh @@ -1,5 +1,6 @@ #!/bin/bash -if [ ! -f "/usr/bin/bashio" ]; then +# If dockerfile failed install manually +[ ! -f "/usr/bin/bashio" ]; then echo "Bashio does not exist, executing script" ################ diff --git a/filebrowser/rootfs/scripts/00-aaa.sh b/filebrowser/rootfs/scripts/00-aaa.sh index 33c59cddc..dbabe0233 100644 --- a/filebrowser/rootfs/scripts/00-aaa.sh +++ b/filebrowser/rootfs/scripts/00-aaa.sh @@ -1,5 +1,6 @@ #!/bin/bash -if [ ! -f "/usr/bin/bashio" ]; then +# If dockerfile failed install manually +[ ! -f "/usr/bin/bashio" ]; then echo "Bashio does not exist, executing script" ################ diff --git a/gazpar2mqtt/rootfs/scripts/00-aaa.sh b/gazpar2mqtt/rootfs/scripts/00-aaa.sh index c1df9fd74..bb77abcfc 100644 --- a/gazpar2mqtt/rootfs/scripts/00-aaa.sh +++ b/gazpar2mqtt/rootfs/scripts/00-aaa.sh @@ -1,5 +1,6 @@ #!/bin/bash -if [ ! -f "/usr/bin/bashio" ]; then +# If dockerfile failed install manually +[ ! -f "/usr/bin/bashio" ]; then echo "Bashio does not exist, executing script" ################ diff --git a/nextcloud/root/etc/cont-init.d/00-aaa.sh b/nextcloud/root/etc/cont-init.d/00-aaa.sh index 394f26235..9eabc6071 100644 --- a/nextcloud/root/etc/cont-init.d/00-aaa.sh +++ b/nextcloud/root/etc/cont-init.d/00-aaa.sh @@ -1,5 +1,6 @@ #!/bin/bash -if [ ! -f "/usr/bin/bashio" ]; then +# If dockerfile failed install manually +[ ! -f "/usr/bin/bashio" ]; then echo "Bashio does not exist, executing script" ################ diff --git a/papermerge/rootfs/etc/cont-init.d/00-aaa.sh b/papermerge/rootfs/etc/cont-init.d/00-aaa.sh index acc792a80..ba0a54d9a 100644 --- a/papermerge/rootfs/etc/cont-init.d/00-aaa.sh +++ b/papermerge/rootfs/etc/cont-init.d/00-aaa.sh @@ -1,5 +1,6 @@ #!/bin/bash -if [ ! -f "/usr/bin/bashio" ]; then +# If dockerfile failed install manually +[ ! -f "/usr/bin/bashio" ]; then echo "Bashio does not exist, executing script" ################ diff --git a/qbittorrent/rootfs/etc/cont-init.d/00-aaa.sh b/qbittorrent/rootfs/etc/cont-init.d/00-aaa.sh index 8dcd0f8ee..6eb98b4d6 100644 --- a/qbittorrent/rootfs/etc/cont-init.d/00-aaa.sh +++ b/qbittorrent/rootfs/etc/cont-init.d/00-aaa.sh @@ -1,6 +1,7 @@ #!/bin/bash -if [ ! -f "/usr/bin/bashio" ]; then +# If dockerfile failed install manually +[ ! -f "/usr/bin/bashio" ]; then echo "Bashio does not exist, executing script" ################ diff --git a/webtrees/rootfs/script/00-aaa.sh b/webtrees/rootfs/script/00-aaa.sh index 08af64c9d..df2f5ab94 100644 --- a/webtrees/rootfs/script/00-aaa.sh +++ b/webtrees/rootfs/script/00-aaa.sh @@ -1,5 +1,6 @@ #!/bin/bash -if [ ! -f "/usr/bin/bashio" ]; then +# If dockerfile failed install manually +[ ! -f "/usr/bin/bashio" ]; then echo "Bashio does not exist, executing script" ################