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

59 lines
1.8 KiB
Text
Raw Normal View History

#!/bin/bash
2015-09-29 02:28:53 +02:00
#=================================================
# GENERIC START
#=================================================
# 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
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2021-01-07 14:24:42 +01:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
# Remove the dedicated nginx config
ynh_remove_nginx_config
#=================================================
# REMOVE PHP-FPM CONFIGURATION
#=================================================
2021-01-07 14:24:42 +01:00
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=1
# Remove the dedicated php-fpm config
ynh_remove_fpm_config
# 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 LOGROTATE CONFIGURATION
#=================================================
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
# Remove the app-specific logrotate config
ynh_remove_logrotate
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE APP FOLDERS
#=================================================
# 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