mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
29 lines
760 B
Bash
Executable File
29 lines
760 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Define functions.
|
|
function fixperms {
|
|
chown -R $UID:$GID /data /opt/maubot
|
|
}
|
|
|
|
cd /opt/maubot
|
|
|
|
# Replace database path in config.
|
|
sed -i "s#sqlite:///maubot.db#sqlite:////data/maubot.db#" /data/config.yaml
|
|
sed -i "s#- ./plugins#- /data/plugins#" /data/config.yaml
|
|
|
|
# Check that database is in the right state
|
|
alembic -x config=/data/config.yaml upgrade head
|
|
|
|
if [ ! -f /data/config.yaml ]; then
|
|
cp example-config.yaml /data/config.yaml
|
|
echo "Didn't find a config file."
|
|
echo "Copied default config file to /data/config.yaml"
|
|
echo "Modify that config file to your liking."
|
|
echo "Start the container again after that to generate the registration file."
|
|
fixperms
|
|
exit
|
|
fi
|
|
|
|
fixperms
|
|
exec su-exec $UID:$GID python3 -m maubot -c /data/config.yaml
|