1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/synapse_ynh.git synced 2024-09-03 20:26:38 +02:00
synapse_ynh/sources/update_synapse_for_appservice.sh

27 lines
705 B
Bash
Raw Normal View History

2020-07-24 23:33:53 +02:00
#!/bin/bash
app=__APP__
service_config_file=/etc/matrix-$app/conf.d/app_service.yaml
# Backup the previous config file
cp $service_config_file /tmp/app_service_backup.yaml
echo "app_service_config_files:" > $service_config_file
for f in $(ls /etc/matrix-$app/app-service/); do
2020-08-06 23:11:52 +02:00
echo " - /etc/matrix-$app/app-service/$f" >> $service_config_file
2020-07-24 23:33:53 +02:00
done
# Set permissions
chown matrix-$app $service_config_file
chmod 600 $service_config_file
systemctl restart matrix-$app
if [ $? -eq 0 ]; then
rm /tmp/app_service_backup.yaml
exit 0
else
echo "Failed to restart synapse with the new config file. Restore the old config file !!"
cp /tmp/app_service_backup.yaml $service_config_file
fi