2015-01-14 10:55:14 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-06-06 06:04:22 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-01-14 10:55:14 +01:00
|
|
|
|
2019-06-06 06:04:22 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2015-01-14 10:55:14 +01:00
|
|
|
|
2019-06-06 06:04:22 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Loading installation settings..."
|
2015-01-14 10:55:14 +01:00
|
|
|
|
2019-06-06 06:04:22 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2015-01-14 10:55:14 +01:00
|
|
|
|
2019-06-06 06:04:22 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
2019-07-13 14:18:06 +02:00
|
|
|
port_videobridge=$(ynh_app_setting_get --app=$app --key=port_videobridge)
|
2019-07-14 01:17:46 +02:00
|
|
|
port_component=$(ynh_app_setting_get --app=$app --key=port_component)
|
2019-06-06 06:04:22 +02:00
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2019-07-13 14:18:06 +02:00
|
|
|
focus_user=$(ynh_app_setting_get --app=$app --key=focus_user)
|
2015-01-14 10:55:14 +01:00
|
|
|
|
2019-06-06 06:04:22 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
2020-01-15 21:40:17 +01:00
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
2019-06-06 06:04:22 +02:00
|
|
|
#=================================================
|
2020-01-15 21:40:17 +01:00
|
|
|
ynh_print_info --message="Removing service integration in YunoHost..."
|
2015-01-14 10:55:14 +01:00
|
|
|
|
2020-01-15 21:40:17 +01:00
|
|
|
# Remove the service from the list of services known by Yunohost (added from `yunohost service add`)
|
2019-07-13 14:18:06 +02:00
|
|
|
if ynh_exec_warn_less yunohost service status $app-videobridge >/dev/null
|
2019-06-06 06:04:22 +02:00
|
|
|
then
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Removing $app-videobridge service..."
|
2019-07-13 14:18:06 +02:00
|
|
|
yunohost service remove $app-videobridge
|
2019-06-06 06:04:22 +02:00
|
|
|
fi
|
2019-07-13 14:18:06 +02:00
|
|
|
|
|
|
|
if ynh_exec_warn_less yunohost service status $app-jicofo >/dev/null
|
2019-06-06 06:04:22 +02:00
|
|
|
then
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Removing $app-jicofo service..."
|
2019-07-13 14:18:06 +02:00
|
|
|
yunohost service remove $app-jicofo
|
2019-06-06 06:04:22 +02:00
|
|
|
fi
|
2015-01-14 10:55:14 +01:00
|
|
|
|
2019-06-06 06:04:22 +02:00
|
|
|
#=================================================
|
|
|
|
# STOP AND REMOVE SERVICE
|
|
|
|
#=================================================
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Stopping and removing the systemd service..."
|
2015-01-14 10:55:14 +01:00
|
|
|
|
2019-06-06 06:04:22 +02:00
|
|
|
# Remove the dedicated systemd config
|
2019-07-13 14:18:06 +02:00
|
|
|
ynh_remove_systemd_config --service=$app-videobridge
|
|
|
|
ynh_remove_systemd_config --service=$app-jicofo
|
2015-01-14 10:55:14 +01:00
|
|
|
|
2019-06-06 06:04:22 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Removing dependencies..."
|
2019-06-06 06:04:22 +02:00
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
|
|
|
|
|
|
|
ynh_remove_nodejs
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Removing app main directory..."
|
2019-06-06 06:04:22 +02:00
|
|
|
|
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove --file="$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Removing nginx web server configuration..."
|
2019-06-06 06:04:22 +02:00
|
|
|
|
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Removing logrotate configuration..."
|
2019-06-06 06:04:22 +02:00
|
|
|
|
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CLOSE A PORT
|
|
|
|
#=================================================
|
2020-01-15 21:40:17 +01:00
|
|
|
ynh_print_info --message="Closing a port..."
|
2019-06-06 06:04:22 +02:00
|
|
|
|
|
|
|
if yunohost firewall list | grep -q "\- $port$"
|
|
|
|
then
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Closing port $port..."
|
2019-06-06 06:04:22 +02:00
|
|
|
ynh_exec_warn_less yunohost firewall disallow TCP $port
|
|
|
|
fi
|
|
|
|
|
2019-07-13 14:18:06 +02:00
|
|
|
if yunohost firewall list | grep -q "\- $port_videobridge$"
|
|
|
|
then
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Closing port $port_videobridge..."
|
2019-07-14 01:17:46 +02:00
|
|
|
ynh_exec_warn_less yunohost firewall disallow UDP $port_videobridge
|
|
|
|
fi
|
|
|
|
|
|
|
|
if yunohost firewall list | grep -q "\- $port_component$"
|
|
|
|
then
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Closing port $port_component..."
|
2019-07-14 01:17:46 +02:00
|
|
|
ynh_exec_warn_less yunohost firewall disallow TCP $port_component
|
2019-07-13 14:18:06 +02:00
|
|
|
fi
|
|
|
|
|
2019-06-06 06:04:22 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
2019-07-14 01:17:46 +02:00
|
|
|
# RECONFIGURE METRONOME
|
2019-06-06 06:04:22 +02:00
|
|
|
#=================================================
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Reconfiguring Metronome..."
|
2019-06-06 06:04:22 +02:00
|
|
|
|
2019-08-25 15:45:36 +02:00
|
|
|
# Remove Metronome modules
|
|
|
|
ynh_secure_remove --file="/usr/lib/metronome/modules/mod_carbons.lua"
|
|
|
|
ynh_secure_remove --file="/usr/lib/metronome/modules/mod_http_altconnect.lua"
|
|
|
|
ynh_secure_remove --file="/usr/lib/metronome/modules/mod_smacks.lua"
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=metronome --action=restart
|
|
|
|
|
2019-08-25 03:40:54 +02:00
|
|
|
# Remove domain conf template
|
|
|
|
ynh_secure_remove --file="/usr/share/yunohost/templates/jitsi/$domain.cfg.lua"
|
|
|
|
ynh_secure_remove --file="/usr/share/yunohost/templates/jitsi/auth.$domain.cfg.lua"
|
|
|
|
ynh_secure_remove --file="/usr/share/yunohost/templates/jitsi/conference.$domain.cfg.lua"
|
|
|
|
ynh_secure_remove --file="/usr/share/yunohost/templates/jitsi/jitsi-videobridge.$domain.cfg.lua"
|
|
|
|
ynh_secure_remove --file="/usr/share/yunohost/templates/jitsi/focus.$domain.cfg.lua"
|
|
|
|
|
|
|
|
# Remove Jitsi template directory
|
|
|
|
if [ -z "$(ls -A /usr/share/yunohost/templates/jitsi)" ]; then
|
2019-09-03 00:19:49 +02:00
|
|
|
ynh_secure_remove --file="/usr/share/yunohost/templates/jitsi"
|
2019-08-25 03:40:54 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove Metronome Hook
|
|
|
|
ynh_secure_remove --file="/usr/share/yunohost/hooks/conf_regen/50-metronome_$app"
|
|
|
|
yunohost tools regen-conf metronome
|
2019-07-13 14:18:06 +02:00
|
|
|
|
2019-06-06 06:04:22 +02:00
|
|
|
# Delete focus user
|
2019-07-13 14:18:06 +02:00
|
|
|
yunohost user delete $focus_user --purge
|
2019-06-06 06:04:22 +02:00
|
|
|
|
|
|
|
# Removing additional domains
|
2019-07-18 23:10:27 +02:00
|
|
|
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then
|
2019-07-14 12:33:59 +02:00
|
|
|
yunohost domain remove auth.$domain
|
|
|
|
yunohost domain remove conference.$domain
|
|
|
|
yunohost domain remove jitsi-videobridge.$domain
|
|
|
|
yunohost domain remove focus.$domain
|
|
|
|
fi
|
2019-06-06 06:04:22 +02:00
|
|
|
|
|
|
|
#=================================================
|
2020-01-15 21:40:17 +01:00
|
|
|
# REMOVE THE LOG FILES
|
2019-06-06 06:04:22 +02:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the log files
|
|
|
|
ynh_secure_remove --file="/var/log/$app/"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Removing the dedicated system user..."
|
2019-06-06 06:04:22 +02:00
|
|
|
|
|
|
|
# Delete a system user
|
|
|
|
ynh_system_user_delete --username=$app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Removal of $app completed"
|