2015-08-03 12:05:52 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-07-11 18:41:22 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
source _common.sh
|
2018-08-10 14:59:24 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-07-10 16:24:09 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2016-07-10 16:24:09 +02:00
|
|
|
# Retrieve app settings
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2018-08-10 16:36:04 +02:00
|
|
|
final_path=$(ynh_app_setting_get "$app" final_path)
|
2015-08-03 12:05:52 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the dedicated nginx config
|
2018-08-10 16:46:40 +02:00
|
|
|
ynh_secure_remove "/etc/nginx/conf.d/${domain}.d/movim.conf"
|
2018-08-10 15:55:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the dedicated php-fpm config
|
2018-08-10 16:46:40 +02:00
|
|
|
ynh_secure_remove "/etc/php5/fpm/pool.d/movim.conf"
|
2016-07-10 18:42:32 +02:00
|
|
|
|
|
|
|
# Reload services
|
2018-08-10 16:46:40 +02:00
|
|
|
service nginx reload
|
|
|
|
service php5-fpm restart
|
2016-07-10 18:42:32 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# STOP AND REMOVE SERVICE
|
|
|
|
#=================================================
|
|
|
|
|
2018-08-10 16:46:40 +02:00
|
|
|
service movim stop
|
2016-07-10 18:31:45 +02:00
|
|
|
if [ -d /run/systemd/system ]; then
|
2018-08-10 16:46:40 +02:00
|
|
|
systemctl --quiet disable movim.service
|
|
|
|
ynh_secure_remove /lib/systemd/system/movim.service
|
|
|
|
systemctl --quiet daemon-reload
|
2016-07-10 18:31:45 +02:00
|
|
|
else
|
2018-08-10 16:46:40 +02:00
|
|
|
update-rc.d -f movim remove
|
|
|
|
ynh_secure_remove /etc/init.d/movim
|
2016-07-10 18:31:45 +02:00
|
|
|
fi
|
2015-08-03 12:05:52 +02:00
|
|
|
|
2018-08-10 15:00:05 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
|
|
|
|
2016-07-10 16:24:09 +02:00
|
|
|
db_user=movim
|
|
|
|
db_name=movim
|
|
|
|
ynh_mysql_drop_db "$db_name" || true
|
|
|
|
ynh_mysql_drop_user "$db_user" || true
|
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
|
2018-08-10 16:46:40 +02:00
|
|
|
ynh_secure_remove "$final_path"
|
2018-08-10 15:55:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
|
2016-07-10 16:24:09 +02:00
|
|
|
ynh_system_user_exists movim \
|
2018-08-10 16:46:40 +02:00
|
|
|
&& userdel movim
|