1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dolibarr_ynh.git synced 2024-09-03 18:35:53 +02:00
dolibarr_ynh/scripts/remove

43 lines
1.3 KiB
Bash

#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# REMOVE SYSTEM CONFIGURATIONS
#=================================================
ynh_script_progression "Removing system configurations related to $app..."
# Remove the dedicated nginx config
ynh_config_remove_nginx
# Remove the dedicated php-fpm config
ynh_config_remove_phpfpm
# Remove the app-specific logrotate config
ynh_config_remove_logrotate
#=================================================
# REMOVE OLD FILES
#=================================================
# Delete old static pool.d conf
old_php_version=7.0
if [ -f "/etc/php/$old_php_version/fpm/pool.d/$app.conf" ]; then
ynh_safe_rm "/etc/php/$old_php_version/fpm/pool.d/$app.conf"
fi
# Remove a directory securely
ynh_safe_rm "/etc/$app"
# Remove the log files
#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"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Removal of $app completed"