mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-27 06:53:25 +01:00
27 lines
739 B
Bash
27 lines
739 B
Bash
#!/usr/bin/env bashio
|
|
|
|
chmod +x /etc/cont-init.d/*
|
|
sed -i "s|/usr/bin/with-contenv|/usr/bin/env|g" /etc/cont-init.d/*
|
|
/./etc/cont-init.d/00-banner.sh
|
|
|
|
LOCATION=/data
|
|
mkdir -p "$LOCATION"
|
|
|
|
if [ ! -f "$LOCATION"/database.sqlite ]; then
|
|
if [ -f "/home/wger/db/database.sqlite" ]; then
|
|
cp /home/wger/db/database.sqlite "$LOCATION"/database.sqlite
|
|
else
|
|
touch "$LOCATION"/database.sqlite
|
|
fi
|
|
fi
|
|
|
|
chown -R wger "$LOCATION"
|
|
chmod -R 777 "$LOCATION"
|
|
rm /home/wger/db/database.sqlite &>/dev/null || true
|
|
ln -s "$LOCATION"/database.sqlite /home/wger/db
|
|
|
|
python3 manage.py migrate || true
|
|
|
|
echo "Launch app"
|
|
su -l wger -c "cd /home/wger/src && export FROM_EMAIL='wger Workout Manager <wger@example.com>' && exec /home/wger/entrypoint.sh"
|