addon-traccar/traccar/rootfs/etc/cont-init.d/traccar.sh
2022-06-11 11:51:30 +02:00

26 lines
973 B
Bash
Executable file

#!/command/with-contenv bashio
# ==============================================================================
# Home Assistant Community Add-on: Traccar
# Ensures the user configuration file is present
# ==============================================================================
declare host
declare password
declare port
declare username
if ! bashio::fs.file_exists "/config/traccar.xml"; then
cp /etc/traccar/traccar.xml /config/traccar.xml
else
# Existing installation
if bashio::services.available "mysql"; then
# Make sure the database isn't locked
host=$(bashio::services "mysql" "host")
password=$(bashio::services "mysql" "password")
port=$(bashio::services "mysql" "port")
username=$(bashio::services "mysql" "username")
echo "UPDATE DATABASECHANGELOGLOCK SET locked=0;" \
| mysql -h "${host}" -P "${port}" -u "${username}" -p"${password}" \
traccar || true
fi
fi