Update 99-run.sh

This commit is contained in:
Alexandre
2022-02-18 09:49:05 +01:00
committed by GitHub
parent b23670350e
commit 2b93a6d2cd

View File

@@ -15,7 +15,7 @@ mkdir -p "$(dirname "${DATABASESOURCE}")"
# Check absence of config file # Check absence of config file
if [ -f /data/config.yaml ] && [ ! -L /data/config.yaml ]; then if [ -f /data/config.yaml ] && [ ! -L /data/config.yaml ]; then
bashio::log.warning "A current config was found in /data, it is backuped to ${CONFIGSOURCE}.bak" bashio::log.warning "A current config was found in /data, it is backuped to ${CONFIGSOURCE}.bak"
mv /data/config.yaml $CONFIGSOURCE.bak mv /data/config.yaml "$CONFIGSOURCE".bak
fi fi
# Check if config file is there, or create one from template # Check if config file is there, or create one from template
@@ -27,7 +27,7 @@ if [ -f "$CONFIGSOURCE" ]; then
# Check if yaml is valid # Check if yaml is valid
EXIT_CODE=0 EXIT_CODE=0
yamllint -d relaxed "$CONFIGSOURCE" &>ERROR || EXIT_CODE=$? yamllint -d relaxed "$CONFIGSOURCE" &>ERROR || EXIT_CODE=$?
if [ $EXIT_CODE = 0 ]; then if [ "$EXIT_CODE" = 0 ]; then
echo "Config file is a valid yaml" echo "Config file is a valid yaml"
else else
cat ERROR cat ERROR
@@ -36,26 +36,26 @@ if [ -f "$CONFIGSOURCE" ]; then
fi fi
else else
# Create symlink for addon to create config # Create symlink for addon to create config
touch ${CONFIGSOURCE} touch "${CONFIGSOURCE}"
ln -sf "$CONFIGSOURCE" /data ln -sf "$CONFIGSOURCE" /data
rm $CONFIGSOURCE rm "$CONFIGSOURCE"
# Need to restart # Need to restart
bashio::log.fatal "Config file not found. The addon will create a new one, then stop. Please customize the file in "$CONFIGSOURCE" before restarting." bashio::log.fatal "Config file not found. The addon will create a new one, then stop. Please customize the file in $CONFIGSOURCE before restarting."
fi fi
# Remove previous link or file # Remove previous link or file
[ -f /data/enedisgateway.db ] && rm /data/enedisgateway.db [ -f /data/enedisgateway.db ] && rm /data/enedisgateway.db
# Check if database is here or create symlink # Check if database is here or create symlink
if [ -f $DATABASESOURCE ]; then if [ -f "$DATABASESOURCE" ]; then
# Create symlink if not existing yet # Create symlink if not existing yet
ln -sf ${DATABASESOURCE} /data && echo "creating symlink" ln -sf "${DATABASESOURCE}" /data && echo "creating symlink"
bashio::log.info "Using database file found in $DATABASESOURCE" bashio::log.info "Using database file found in $DATABASESOURCE"
else else
# Create symlink for addon to create database # Create symlink for addon to create database
touch ${DATABASESOURCE} touch "${DATABASESOURCE}"
ln -sf $DATABASESOURCE /data ln -sf "$DATABASESOURCE" /data
rm $DATABASESOURCE rm "$DATABASESOURCE"
fi fi
############## ##############
@@ -66,6 +66,7 @@ bashio::log.info "Starting the app"
echo " " echo " "
# Test mode # Test mode
TZ=$(bashio::config "TZ")
if [ "$TZ" = "test" ]; then if [ "$TZ" = "test" ]; then
echo "secret mode found, launching script in /config/test.sh" echo "secret mode found, launching script in /config/test.sh"
cd /config || exit cd /config || exit