#!/bin/bash #================================================= # GENERIC START #================================================= # IMPORT GENERIC HELPERS #================================================= source _common.sh source /usr/share/yunohost/helpers #================================================= # LOAD SETTINGS #================================================= ynh_print_info --message="Loading installation settings..." app=$YNH_APP_INSTANCE_NAME domain=$(ynh_app_setting_get --app=$app --key=domain) port=$(ynh_app_setting_get --app=$app --key=port) #================================================= # STANDARD REMOVE #================================================= # REMOVE DEPENDENCIES #================================================= ynh_print_info --message="Removing dependencies..." # 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 # Remove metapackage and its dependencies ynh_remove_app_dependencies #================================================= # REMOVE NGINX CONFIGURATION #================================================= ynh_print_info --message="Removing nginx web server configuration..." # 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 #================================================= # Remove a cron file ynh_secure_remove --file="/etc/cron.d/$app" # Remove a directory securely ynh_secure_remove --file="/etc/apt/sources.list.d/collabora.list" # Remove a directory securely ynh_secure_remove --file="/etc/loolwsd" # Remove the log files ynh_secure_remove --file="/var/log/$app" #================================================= # GENERIC FINALIZATION #================================================= # END OF SCRIPT #================================================= ynh_print_info --message="Removal of $app completed"