#!/bin/bash #================================================= # IMPORT GENERIC HELPERS #================================================= source _common.sh source /usr/share/yunohost/helpers #================================================= # REMOVE SYSTEM CONFIGURATIONS #================================================= ynh_script_progression --message="Removing system configurations related to $app..." --weight=1 # Remove the dedicated nginx config ynh_remove_nginx_config # Remove the dedicated php-fpm config ynh_remove_fpm_config # Remove the app-specific logrotate config ynh_remove_logrotate #================================================= # REMOVE OLD FILES #================================================= # Delete old static pool.d conf old_php_version=7.0 if [ -f "/etc/php/$old_php_version/fpm/pool.d/$app.conf" ]; then ynh_secure_remove --file="/etc/php/$old_php_version/fpm/pool.d/$app.conf" fi # Remove a directory securely ynh_secure_remove --file="/etc/$app" #================================================= # END OF SCRIPT #================================================= ynh_script_progression --message="Removal of $app completed" --last