mirror of
https://github.com/YunoHost-Apps/synapse_ynh.git
synced 2024-09-03 20:26:38 +02:00
Add warning when server_name config are not managed by yunohost
This commit is contained in:
parent
0f611157d5
commit
4311d1e98d
2 changed files with 6 additions and 0 deletions
|
@ -55,4 +55,8 @@ ynh_script_progression --message="Restarting Synapse services..." --weight=5
|
|||
ynh_systemd_action --service_name=$app-coturn.service --action=restart
|
||||
ynh_systemd_action --service_name=$app.service --action=restart --line_match="Synapse now listening on TCP port $port_synapse_tls" --log_path="/var/log/matrix-$app/homeserver.log" --timeout=300
|
||||
|
||||
if ! yunohost --output-as plain domain list | grep -q "^$server_name"'$'; then
|
||||
ynh_print_warn "Note yunohost won't be able to manage the required config for $server_name. So please add the needed DNS config as described on the documentation"
|
||||
fi
|
||||
|
||||
ynh_script_progression --message="Change of URL completed for $app" --last
|
||||
|
|
|
@ -256,6 +256,8 @@ if yunohost --output-as plain domain list | grep -q "^$server_name$"; then
|
|||
ynh_""permission_create --permission=server_client_infos --url=$server_name/.well-known/matrix \
|
||||
--label="Server info for clients. (well-known)" --show_tile=false --allowed=visitors \
|
||||
--auth_header=false --protected=true
|
||||
else
|
||||
ynh_print_warn "Note yunohost won't be able to manage the required config for $server_name. So please add the needed DNS config as described on the documentation"
|
||||
fi
|
||||
|
||||
#=================================================
|
||||
|
|
Loading…
Reference in a new issue