#!/bin/bash #================================================= # GENERIC START #================================================= # IMPORT GENERIC HELPERS #================================================= source experimental_helper.sh source _common.sh source /usr/share/yunohost/helpers #================================================= # REMOVE SYSTEM CONFIGURATIONS #================================================= ynh_script_progression --message="Removing system configurations related to $app..." --weight=1 # Stop service ynh_systemd_action --service_name="$app.service" --action=stop ynh_remove_systemd_config --service="$app" yunohost service remove "$app" # Remove the app-specific logrotate config ynh_remove_logrotate # Remove the dedicated NGINX config ynh_remove_nginx_config #================================================= # SPECIFIC REMOVE #================================================= # REMOVE VARIOUS FILES #================================================= ynh_script_progression --message="Removing various files..." --weight=1 if [ "$YNH_APP_PURGE" -eq 1 ]; then ynh_script_progression --message="Removing logs..." ynh_secure_remove --file=/var/log/"$app" fi #================================================= # END OF SCRIPT #================================================= ynh_script_progression --message="Removal of $app completed" --last