2014-01-14 22:57:44 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2014-01-14 22:57:44 +01:00
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
# source _common.sh
|
2017-02-15 00:52:24 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
2023-11-02 18:39:09 +01:00
|
|
|
# REMOVE THE MYSQL SUPERUSER
|
2017-08-29 02:34:05 +02:00
|
|
|
#=================================================
|
|
|
|
|
2018-05-23 19:09:15 +02:00
|
|
|
# Remove phpmyadmin MySQL admin user
|
|
|
|
ynh_mysql_drop_user $db_admin_user
|
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-09-24 13:44:38 +02:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration"
|
2017-02-15 00:52:24 +01:00
|
|
|
|
2020-09-24 13:44:38 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2017-08-29 02:34:05 +02:00
|
|
|
ynh_remove_nginx_config
|
2017-02-15 00:52:24 +01:00
|
|
|
|
2017-08-29 02:34:05 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-09-24 13:44:38 +02:00
|
|
|
ynh_script_progression --message="Removing PHP-FPM configuration" --weight=2
|
2017-02-15 00:52:24 +01:00
|
|
|
|
2020-09-24 13:44:38 +02:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2017-08-29 02:34:05 +02:00
|
|
|
ynh_remove_fpm_config
|
2014-01-14 22:57:44 +01:00
|
|
|
|
2019-02-17 20:58:14 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-07-08 08:42:29 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|