Update 99-run.sh

This commit is contained in:
Alexandre
2021-11-15 14:18:09 +01:00
committed by GitHub
parent 3aa72defa0
commit 27f22fb1ac

View File

@@ -4,26 +4,26 @@
# Check if config is there # # Check if config is there #
############################ ############################
#CONFIGSOURCE="/config/enedisgateway2mqtt/config.yaml" CONFIGSOURCE="/config/enedisgateway2mqtt/config.yaml"
# Check if config file is there, or create template # Check if config file is there, or create template
#if [ -f $CONFIGSOURCE ]; then if [ -f $CONFIGSOURCE ]; then
# echo "Using config file found in $CONFIGSOURCE" echo "Using config file found in $CONFIGSOURCE"
#else else
# bashio::log.fatal "Config file not found, creating a new one. Please customize the file in $CONFIGSOURCE" mkdir -p "$(dirname "${CONFIGSOURCE}")"
# mkdir -p "$(dirname "${CONFIGSOURCE}")" cp /templates/config.yaml "$(dirname "${CONFIGSOURCE}")"
# cp /template/config.yaml "$(dirname "${CONFIGSOURCE}")" bashio::log.fatal "Config file not found, creating a new one. Please customize the file in $CONFIGSOURCE"
# bashio::exit.nok sleep 10
#fi bashio::exit.nok
# fi
# Check if yaml is valid
#if [ yamllint $CONFIGSOURCE ]; then
# echo "Config file is a valid yaml"
#else
# bashio::log.fatal "Config file has an invalid yaml format. Please check the file in $CONFIGSOURCE"
# bashio::exit.nok
#fi
# Check if yaml is valid
if [ yamllint $CONFIGSOURCE ]; then
echo "Config file is a valid yaml"
else
bashio::log.fatal "Config file has an invalid yaml format. Please check the file in $CONFIGSOURCE"
bashio::exit.nok
fi