#!/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) #================================================= # REMOVE NGINX CONFIGURATION #================================================= # Remove the dedicated nginx config sudo rm -f "/etc/nginx/conf.d/${domain}.d/movim.conf" #================================================= # REMOVE PHP-FPM CONFIGURATION #================================================= # Remove the dedicated php-fpm config sudo rm -f "/etc/php5/fpm/pool.d/movim.conf" # Reload services sudo service nginx reload sudo service php5-fpm restart #================================================= # STOP AND REMOVE SERVICE #================================================= sudo service movim stop if [ -d /run/systemd/system ]; then sudo systemctl --quiet disable movim.service sudo rm -f /lib/systemd/system/movim.service sudo systemctl --quiet daemon-reload else sudo update-rc.d -f movim remove sudo rm -f /etc/init.d/movim fi #================================================= # REMOVE DEPENDENCIES #================================================= # Remove metapackage and its dependencies ynh_remove_app_dependencies #================================================= # REMOVE THE MYSQL DATABASE #================================================= db_user=movim db_name=movim ynh_mysql_drop_db "$db_name" || true ynh_mysql_drop_user "$db_user" || true #================================================= # REMOVE APP MAIN DIR #================================================= sudo rm -rf /var/www/movim #================================================= # GENERIC FINALIZATION #================================================= # REMOVE DEDICATED USER #================================================= ynh_system_user_exists movim \ && sudo userdel movim