1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hubzilla_ynh.git synced 2024-09-03 19:26:21 +02:00
hubzilla_ynh/scripts/remove

51 lines
1.5 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# REMOVE THE DATABASE
#=================================================
2020-11-13 11:25:58 +01:00
2022-07-13 17:22:05 +02:00
if [ $database = "mysql" ]; then
2023-06-04 11:23:42 +02:00
ynh_script_progression --message="Removing MySQL database..." --weight=1
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
2022-07-13 17:22:05 +02:00
elif [ $database = "postgresql" ]; then
2023-06-04 11:23:42 +02:00
ynh_script_progression --message="Removing PostgreSQL database..." --weight=1
ynh_psql_remove_db --db_user=$db_user --db_name=$db_name
fi
#=================================================
2023-08-13 11:54:19 +02:00
# REMOVE SYSTEM CONFIGURATIONS
#=================================================
2023-08-13 11:54:19 +02:00
# REMOVE SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2020-11-13 16:59:16 +01:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
2020-11-13 16:59:16 +01:00
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config
2023-06-04 11:23:42 +02:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
2022-07-13 17:22:05 +02:00
# Remove the dedicated Fail2Ban config
ynh_remove_fail2ban_config
2020-04-23 00:03:42 +02:00
2022-07-13 17:22:05 +02:00
# Remove a cron file
ynh_secure_remove --file="/etc/cron.d/$app"
2018-11-08 11:08:11 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Removal of $app completed" --last