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
Éric Gaspar ff2fbf1722 bump
2024-08-28 10:50:05 +02:00

40 lines
1.2 KiB
Bash

#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# REMOVE SYSTEM CONFIGURATIONS
#=================================================
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
# Remove the dedicated nginx config
ynh_remove_nginx_config
# Remove the dedicated php-fpm config
ynh_remove_fpm_config
# Remove the app-specific logrotate config
ynh_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_secure_remove --file="/etc/php/$old_php_version/fpm/pool.d/$app.conf"
fi
# Remove a directory securely
ynh_secure_remove --file="/etc/$app"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last