mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 02:11:01 +01:00
Update 99-run.sh
This commit is contained in:
@@ -2,6 +2,27 @@
|
|||||||
# shellcheck shell=bash
|
# shellcheck shell=bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
######################
|
||||||
|
# CHECK BIRDNET.CONF #
|
||||||
|
######################
|
||||||
|
|
||||||
|
echo " "
|
||||||
|
bashio::log.info "Checking your birndet.conf file integrity"
|
||||||
|
|
||||||
|
# Set variables
|
||||||
|
configcurrent="$HOME"/BirdNET-Pi/birdnet.conf
|
||||||
|
configtemplate="$HOME"/BirdNET-Pi/birdnet.bak
|
||||||
|
|
||||||
|
# Extract variable names from config template and read each one
|
||||||
|
grep -o '^[^#=]*=' "$configtemplate" | sed 's/=//' | while read -r var; do
|
||||||
|
# Check if the variable is in configcurrent, if not, append it
|
||||||
|
if ! grep -q "^$var=" "$configcurrent"; then
|
||||||
|
# At which line was the variable in the initial file
|
||||||
|
bashio::log.yellow "...$var was missing from your birdnet.conf file, it was re-added"
|
||||||
|
grep "^$var=" "$configtemplate" >> "$configcurrent"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
##############
|
##############
|
||||||
# SET SYSTEM #
|
# SET SYSTEM #
|
||||||
##############
|
##############
|
||||||
|
|||||||
Reference in New Issue
Block a user