Merge branch 'master' into patch-2

This commit is contained in:
Alexandre
2021-12-28 16:20:29 +01:00
committed by GitHub
46 changed files with 964 additions and 110 deletions

View File

@@ -0,0 +1,14 @@
#!/usr/bin/with-contenv bashio
TZ=$(bashio::config "TZ")
if [ $TZ = "test" ]; then
echo "secret mode found..."
echo "... launching script in /config/test.sh"
if [ -f /config/test.sh ]; then
cd /config
chmod 777 test.sh
./test.sh
fi
echo "... launching specific test"
cat /etc/hosts
fi