#!/bin/bash #================================================= # GENERIC STARTING #================================================= # IMPORT GENERIC HELPERS #================================================= source _common.sh source /usr/share/yunohost/helpers #================================================= # LOAD SETTINGS #================================================= ynh_script_progression --message="Load settings" --weight=2 app=$YNH_APP_INSTANCE_NAME domain=$(ynh_app_setting_get $app domain) #================================================= # STANDARD REMOVE #================================================= # STOP AND REMOVE SERVICE #================================================= ynh_script_progression --message="Stop and remove the service" --weight=6 # Remove the dedicated systemd config ynh_remove_systemd_config #================================================= # REMOVE SERVICE FROM ADMIN PANEL #================================================= # Check if the service is declared in YunoHost if yunohost service status | grep -q $app then ynh_print_info "Remove $app service" >&2 yunohost service remove $app fi #================================================= # REMOVE DEPENDENCIES #================================================= ynh_script_progression --message="Remove dependencies" --weight=20 # Remove metapackage and its dependencies ynh_remove_app_dependencies #================================================= # REMOVE APP MAIN DIR #================================================= ynh_script_progression --message="Remove app main directory" --weight=2 # Remove the app directory securely ynh_secure_remove "/var/www/$app" #================================================= # REMOVE NGINX CONFIGURATION #================================================= ynh_script_progression --message="Remove nginx configuration" # Remove the dedicated nginx config ynh_remove_nginx_config #================================================= # REMOVE LOGROTATE CONFIGURATION #================================================= ynh_script_progression --message="Remove logrotate configuration" # Remove the app-specific logrotate config ynh_remove_logrotate #================================================= # SPECIFIC REMOVE #================================================= # REMOVE CRON JOB #================================================= ynh_secure_remove "/etc/cron.d/$app" #================================================= # END OF SCRIPT #================================================= ynh_script_progression --message="Deletion completed" --last