2017-04-24 04:16:02 +02:00
#!/bin/bash
2015-09-29 02:28:53 +02:00
2018-02-02 16:59:51 +01:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2015-09-29 02:28:53 +02:00
2018-02-02 16:59:51 +01:00
source _common.sh
2017-04-24 04:16:02 +02:00
source /usr/share/yunohost/helpers
2015-09-29 02:28:53 +02:00
2019-06-16 00:06:51 +02:00
#=================================================
2024-03-25 22:28:52 +01:00
# REMOVE SYSTEM CONFIGURATIONS
2019-06-16 00:06:51 +02:00
#=================================================
2024-08-30 22:49:44 +02:00
ynh_script_progression "Removing system configurations related to $app..."
2019-06-16 00:06:51 +02:00
# Remove the dedicated nginx config
2024-08-30 22:49:44 +02:00
ynh_config_remove_nginx
2019-06-16 00:06:51 +02:00
# Remove the dedicated php-fpm config
2024-08-30 22:49:44 +02:00
ynh_config_remove_phpfpm
2019-06-16 00:06:51 +02:00
# Remove the app-specific logrotate config
2024-08-30 22:49:44 +02:00
ynh_config_remove_logrotate
2019-06-16 00:06:51 +02:00
#=================================================
2024-03-25 22:28:52 +01:00
# REMOVE OLD FILES
2019-06-16 00:06:51 +02:00
#=================================================
2024-03-25 22:28:52 +01:00
# Delete old static pool.d conf
old_php_version=7.0
if [ -f "/etc/php/$old_php_version/fpm/pool.d/$app.conf" ]; then
2024-08-30 22:49:44 +02:00
ynh_safe_rm "/etc/php/$old_php_version/fpm/pool.d/$app.conf"
2024-03-25 22:28:52 +01:00
fi
2019-06-16 00:06:51 +02:00
# Remove a directory securely
2024-08-30 22:49:44 +02:00
ynh_safe_rm "/etc/$app"
2019-06-16 00:06:51 +02:00
# Remove the log files
2024-08-30 22:49:44 +02:00
#REMOVEME? (Apps should not remove their log dir during remove ... this should only happen if --purge is used, and be handled by the core...) ynh_safe_rm "/var/log/$app"
2019-06-16 00:06:51 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2017-04-24 04:16:02 +02:00
2024-08-30 22:49:44 +02:00
ynh_script_progression "Removal of $app completed"