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

44 lines
1.2 KiB
Text
Raw Normal View History

#!/bin/bash
2015-09-29 02:28:53 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2015-09-29 02:28:53 +02:00
source _common.sh
source /usr/share/yunohost/helpers
2015-09-29 02:28:53 +02:00
#=================================================
2024-03-25 22:28:52 +01:00
# REMOVE SYSTEM CONFIGURATIONS
#=================================================
2024-03-25 22:28:52 +01:00
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
#=================================================
2024-03-25 22:28:52 +01:00
# REMOVE OLD FILES
#=================================================
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
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"
# Remove the log files
ynh_secure_remove --file="/var/log/$app"
#=================================================
# END OF SCRIPT
#=================================================
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Removal of $app completed" --last