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/Coturn_config_rotate.sh

36 lines
900 B
Bash
Raw Normal View History

#!/bin/bash
2024-02-20 21:39:06 +01:00
set -eu
app_instance=__APP__
source /usr/share/yunohost/helpers
2021-02-18 09:16:37 +01:00
coturn_config_path="/etc/matrix-$app_instance/coturn.conf"
public_ip4="$(curl ip.yunohost.org)" || true
public_ip6="$(curl ipv6.yunohost.org)" || true
2021-02-18 09:16:37 +01:00
old_config_line=$(egrep "^external-ip=.*\$" $coturn_config_path)
perl -i -pe 's/(^external-ip=.*\n)*//g' $coturn_config_path
2020-05-20 23:41:04 +02:00
if [ -n "$public_ip4" ] && ynh_validate_ip4 --ip_address="$public_ip4"
then
2020-05-20 23:41:04 +02:00
echo "external-ip=$public_ip4" >> "$coturn_config_path"
fi
2020-05-20 23:41:04 +02:00
if [ -n "$public_ip6" ] && ynh_validate_ip6 --ip_address="$public_ip6"
then
2020-05-20 23:41:04 +02:00
echo "external-ip=$public_ip6" >> "$coturn_config_path"
fi
new_config_line=$(egrep "^external-ip=.*\$" "/etc/matrix-$app_instance/coturn.conf")
setfacl -R -m user:turnserver:rX /etc/matrix-$app_instance
if [ "$old_config_line" != "$new_config_line" ]
then
systemctl restart $app_instance-coturn.service
fi
exit 0