1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jitsi_ynh.git synced 2024-09-03 19:35:57 +02:00
jitsi_ynh/scripts/remove

92 lines
3.2 KiB
Text
Raw Normal View History

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
#=================================================
2024-01-18 16:39:14 +01:00
# REMOVE SYSTEM CONFIGURATIONS
2019-06-06 06:04:22 +02:00
#=================================================
2024-01-18 16:39:14 +01:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2015-01-14 10:55:14 +01:00
2022-02-03 03:00:20 +01:00
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
2024-01-18 16:39:14 +01:00
if ynh_exec_warn_less yunohost service status "$app-videobridge" >/dev/null; then
yunohost service remove "$app-videobridge"
2019-06-06 06:04:22 +02:00
fi
2019-07-13 14:18:06 +02:00
2024-01-18 16:39:14 +01:00
if ynh_exec_warn_less yunohost service status "$app-jicofo" >/dev/null; then
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
# Remove the dedicated systemd config
2024-01-18 16:39:14 +01:00
ynh_remove_systemd_config --service="$app-videobridge"
ynh_remove_systemd_config --service="$app-jicofo"
2015-01-14 10:55:14 +01:00
2022-06-09 01:19:53 +02:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
2024-01-18 16:39:14 +01:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
2019-06-06 06:04:22 +02:00
#=================================================
2022-02-03 03:00:20 +01:00
# RECONFIGURE PROSODY
2019-06-06 06:04:22 +02:00
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Reconfiguring Prosody..." --weight=1
2019-06-06 06:04:22 +02:00
2024-01-18 16:39:14 +01:00
prosodyctl deluser "$focus_user@auth.$domain" || true
prosodyctl deluser "$videobridge_user@auth.$domain" || true
2022-02-03 03:00:20 +01:00
# Remove domain conf template
ynh_secure_remove --file="/etc/prosody/conf.d/$domain.cfg.lua"
ynh_secure_remove --file="/etc/prosody/conf.avail/$domain.cfg.lua"
ynh_secure_remove --file="/etc/prosody/certs/$domain.key"
ynh_secure_remove --file="/etc/prosody/certs/$domain.crt"
ynh_secure_remove --file="/var/lib/prosody/$domain.key"
ynh_secure_remove --file="/var/lib/prosody/$domain.crt"
ynh_secure_remove --file="/var/lib/prosody/$domain.cnf"
ynh_secure_remove --file="/etc/prosody/certs/auth.$domain.key"
ynh_secure_remove --file="/etc/prosody/certs/auth.$domain.crt"
ynh_secure_remove --file="/var/lib/prosody/auth.$domain.key"
ynh_secure_remove --file="/var/lib/prosody/auth.$domain.crt"
ynh_secure_remove --file="/var/lib/prosody/auth.$domain.cnf"
ynh_secure_remove --file="/usr/local/share/ca-certificates/auth.$domain.crt"
update-ca-certificates -f
2024-01-18 16:39:14 +01:00
gpasswd --delete prosody "$app"
2019-06-06 06:04:22 +02:00
2024-01-18 16:39:14 +01:00
ynh_systemd_action --service_name=prosody --action=restart
2019-06-06 06:04:22 +02:00
#=================================================
2022-02-03 03:00:20 +01:00
# REMOVE DEPENDENCIES
2019-06-06 06:04:22 +02:00
#=================================================
2024-01-09 19:23:08 +01:00
ynh_script_progression --message="Removing dependencies..." --weight=1
2019-06-06 06:04:22 +02:00
2024-01-18 16:39:14 +01:00
ynh_app_setting_delete --app="$app" --key=require_prosody
2022-02-06 01:57:11 +01:00
2022-06-09 01:19:53 +02:00
ynh_remove_apps
2022-02-06 01:57:11 +01:00
2019-06-06 06:04:22 +02:00
#=================================================
# SPECIFIC REMOVE
#=================================================
2022-02-03 03:00:20 +01:00
# REMOVE VARIOUS FILES
2020-04-11 21:55:05 +02:00
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Removing various files..." --weight=1
2020-04-11 21:55:05 +02:00
2022-02-03 03:00:20 +01:00
# Remove a directory securely
2020-04-11 21:55:05 +02:00
ynh_secure_remove --file="/etc/$app"
2019-06-06 06:04:22 +02:00
# Remove the log files
2020-01-20 00:53:30 +01:00
ynh_secure_remove --file="/var/log/$app"
2019-06-06 06:04:22 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-10-14 03:49:09 +02:00
ynh_script_progression --message="Removal of $app completed" --last