1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/collabora_ynh.git synced 2024-09-03 18:16:25 +02:00
collabora_ynh/scripts/remove

79 lines
2.2 KiB
Text
Raw Normal View History

2017-06-21 11:34:24 +02:00
#!/bin/bash
2018-11-03 10:30:12 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-06-21 11:34:24 +02:00
2018-11-03 10:30:12 +01:00
source _common.sh
2017-06-21 11:34:24 +02:00
source /usr/share/yunohost/helpers
2018-11-03 10:30:12 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
2019-08-04 23:00:10 +02:00
ynh_print_info --message="Loading installation settings..."
2018-11-03 10:30:12 +01:00
app=$YNH_APP_INSTANCE_NAME
2019-08-04 23:00:10 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
port=$(ynh_app_setting_get --app=$app --key=port)
2018-11-03 10:30:12 +01:00
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE DEPENDENCIES
#=================================================
2019-08-04 23:00:10 +02:00
ynh_print_info --message="Removing dependencies..."
2018-11-03 10:30:12 +01:00
# Fix "rm: cannot remove '/etc/apt/apt.conf.d/25loolwsd': No such file or directory"
# on apt remove
touch /etc/apt/apt.conf.d/25loolwsd
2019-08-04 23:00:10 +02:00
2018-11-03 10:30:12 +01:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2019-08-04 23:00:10 +02:00
ynh_print_info --message="Removing nginx web server configuration..."
2018-11-03 10:30:12 +01:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
#=================================================
# CLOSE A PORT
#=================================================
if yunohost firewall list | grep -q "\- $port$"
then
echo "Close port $port" >&2
yunohost firewall disallow TCP $port 2>&1
fi
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE THE CRON FILE
#=================================================
2017-06-21 11:34:24 +02:00
2018-11-03 10:30:12 +01:00
# Remove a cron file
2019-08-04 23:00:10 +02:00
ynh_secure_remove --file="/etc/cron.d/$app"
# Remove a directory securely
ynh_secure_remove --file="/etc/apt/sources.list.d/collabora.list"
2017-06-21 11:34:24 +02:00
2018-11-03 10:30:12 +01:00
# Remove a directory securely
2020-04-16 01:53:52 +02:00
ynh_secure_remove --file="/etc/loolwsd"
2017-06-21 11:34:24 +02:00
2018-11-03 10:30:12 +01:00
# Remove the log files
2020-04-16 01:53:52 +02:00
ynh_secure_remove --file="/var/log/$app"
2017-06-21 11:34:24 +02:00
2018-11-03 10:30:12 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
2019-08-04 23:00:10 +02:00
# END OF SCRIPT
2018-11-03 10:30:12 +01:00
#=================================================
2017-06-21 11:34:24 +02:00
2019-08-04 23:00:10 +02:00
ynh_print_info --message="Removal of $app completed"