#!/bin/bash #================================================= # GENERIC START #================================================= # IMPORT GENERIC HELPERS #================================================= source _common.sh source /usr/share/yunohost/helpers #================================================= # LOAD SETTINGS #================================================= app=$YNH_APP_INSTANCE_NAME # Retrieve app settings domain=$(ynh_app_setting_get "$app" domain) db_name=$(ynh_app_setting_get $app db_name) # Remove the app directory securely ynh_secure_remove "/var/www/$app" #================================================= # REMOVE NGINX CONFIGURATION #================================================= # Remove the dedicated nginx config ynh_remove_nginx_config ### PHP (remove if not used) ### # If a dedicated php-fpm process is used: # sudo rm -f /etc/php5/fpm/pool.d/$app.conf # sudo service php5-fpm reload ### PHP end ### # Remove a database if it exists, along with the associated user ynh_mysql_remove_db $db_name $db_name