2018-08-24 22:06:55 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2019-01-12 14:54:04 +01:00
|
|
|
if [[ -z "$GID" ]]; then
|
|
|
|
GID="$UID"
|
|
|
|
fi
|
|
|
|
|
2018-10-24 15:46:15 +02:00
|
|
|
# Define functions.
|
|
|
|
function fixperms {
|
|
|
|
chown -R $UID:$GID /data /opt/mautrix-whatsapp
|
|
|
|
}
|
|
|
|
|
2019-01-12 14:54:04 +01:00
|
|
|
if [[ ! -f /data/config.yaml ]]; then
|
2018-08-24 22:06:55 +02:00
|
|
|
cp /opt/mautrix-whatsapp/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."
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2019-01-12 14:54:04 +01:00
|
|
|
if [[ ! -f /data/registration.yaml ]]; then
|
2018-08-24 22:06:55 +02:00
|
|
|
/usr/bin/mautrix-whatsapp -g -c /data/config.yaml -r /data/registration.yaml
|
|
|
|
echo "Didn't find a registration file."
|
|
|
|
echo "Generated one for you."
|
|
|
|
echo "Copy that over to synapses app service directory."
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd /data
|
2018-10-24 15:46:15 +02:00
|
|
|
fixperms
|
|
|
|
exec su-exec $UID:$GID /usr/bin/mautrix-whatsapp
|