2020-08-17 15:03:10 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Define functions.
|
|
|
|
function fixperms {
|
2021-03-15 01:40:56 -04:00
|
|
|
chown -R $UID:$GID /data /opt/matrix-puppeteer-line
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
|
2021-03-15 01:40:56 -04:00
|
|
|
cd /opt/matrix-puppeteer-line
|
2020-08-17 15:03:10 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
if [ ! -f /data/registration.yaml ]; then
|
2021-03-15 01:40:56 -04:00
|
|
|
python3 -m matrix_puppeteer_line -g -c /data/config.yaml -r /data/registration.yaml
|
2020-08-17 15:03:10 -04:00
|
|
|
echo "Didn't find a registration file."
|
|
|
|
echo "Generated one for you."
|
|
|
|
echo "Copy that over to synapses app service directory."
|
|
|
|
fixperms
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
fixperms
|
2021-03-15 01:40:56 -04:00
|
|
|
exec su-exec $UID:$GID python3 -m matrix_puppeteer_line -c /data/config.yaml
|