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/scripts/remove

116 lines
3.2 KiB
Text
Raw Normal View History

2017-02-13 20:43:41 +01:00
#!/bin/bash
2018-01-30 23:44:49 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source /usr/share/yunohost/helpers
2017-02-13 20:43:41 +01:00
# Import common cmd
source ./psql.sh
source ./experimental_helper.sh
2017-02-13 20:43:41 +01:00
source ./_common.sh
2018-01-30 23:44:49 +01:00
#=================================================
# SET ALL CONSTANT
#=================================================
app=$YNH_APP_INSTANCE_NAME
synapse_user="matrix-$app"
synapse_db_name="matrix_$app"
synapse_db_user="matrix_$app"
upstream_version=$(ynh_app_upstream_version)
#=================================================
# LOAD SETTINGS
#=================================================
domain=$(ynh_app_setting_get $app special_domain)
final_path=$(ynh_app_setting_get $app final_path)
2017-02-13 20:43:41 +01:00
synapse_tls_port=$(ynh_app_setting_get $app synapse_tls_port)
turnserver_tls_port=$(ynh_app_setting_get $app turnserver_tls_port)
turnserver_alt_tls_port=$(ynh_app_setting_get $app turnserver_alt_tls_port)
2017-02-13 20:43:41 +01:00
2018-01-30 23:44:49 +01:00
#=================================================
# STANDARD REMOVE
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
ynh_remove_systemd_config matrix-$app
ynh_remove_systemd_config coturn-$app
2018-01-30 23:44:49 +01:00
#=================================================
# CLOSE A PORT
#=================================================
2017-02-13 20:43:41 +01:00
closeport() {
2018-02-12 17:34:40 +01:00
local port=$1
if yunohost firewall list | grep -q "\- $port$"
2017-02-13 20:43:41 +01:00
then
echo "Close port $port"
yunohost firewall disallow Both $port > /dev/null
2017-02-13 20:43:41 +01:00
fi
}
2018-02-12 17:34:40 +01:00
closeport $synapse_tls_port
closeport $turnserver_tls_port
closeport $turnserver_alt_tls_port
2017-02-13 20:43:41 +01:00
2018-01-30 23:44:49 +01:00
#=================================================
# SETUP SSOWAT
#=================================================
# Remove the skipped url
python $final_path/remove_sso_conf.py
2018-01-30 23:44:49 +01:00
#=================================================
# REMOVE DEPENDENCIES
#=================================================
ynh_remove_app_dependencies
2018-01-30 23:44:49 +01:00
#=================================================
# REMOVE APP DIR
#=================================================
ynh_secure_remove $final_path
ynh_secure_remove /var/lib/matrix-$app
ynh_secure_remove /var/log/matrix-$app
ynh_secure_remove /etc/matrix-$app
ynh_secure_remove /etc/default/matrix-$app
ynh_secure_remove /etc/default/coturn-$app
2018-01-30 23:44:49 +01:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
ynh_remove_nginx_config
2018-01-30 23:44:49 +01:00
#=================================================
# REMOVE THE POSTGRESQL DATABASE
#=================================================
2017-12-20 21:24:32 +01:00
ynh_psql_remove_db $synapse_db_name $synapse_db_user
2018-01-30 23:44:49 +01:00
#=================================================
# REMOVE DEDICATED USER
#=================================================
ynh_system_user_delete $synapse_user
2018-01-30 23:44:49 +01:00
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
ynh_remove_logrotate
2017-02-13 20:43:41 +01:00
2018-01-30 23:44:49 +01:00
#=================================================
# REMOVE SERVICE FROM ADMIN PANEL
#=================================================
yunohost service remove matrix-$app
2018-02-12 17:34:40 +01:00
yunohost service remove coturn-$app