🚑 Make sure the database isn't locked on startup

This commit is contained in:
Franck Nijhof 2020-03-01 02:24:27 +01:00
parent 38753bab3c
commit d1f780f503
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3

View file

@ -3,6 +3,24 @@
# 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
fi
fi