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

114 lines
4 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Loading settings..." --weight=1
2023-06-04 10:58:53 +02:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2023-06-04 10:58:53 +02:00
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
#REMOVEME? db_name=$(ynh_app_setting_get --app=$app --key=db_name)
#REMOVEME? db_user=$db_name
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
#REMOVEME? database=$(ynh_app_setting_get --app=$app --key=database)
#=================================================
# STANDARD REMOVE
2022-07-13 17:22:05 +02:00
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
2022-07-13 17:22:05 +02:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
#=================================================
# REMOVE THE DATABASE
#=================================================
2020-11-13 11:25:58 +01:00
2022-07-13 17:22:05 +02:00
if [ $database = "mysql" ]; then
2020-11-13 11:25:58 +01:00
# Removing MySQL database
2023-06-04 10:58:53 +02:00
#REMOVEME? ynh_script_progression --message="Removing MySQL database..." --weight=1
#REMOVEME? ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
2022-07-13 17:22:05 +02:00
elif [ $database = "postgresql" ]; then
2020-11-13 11:25:58 +01:00
# Removing PostgreSQL database
2023-06-04 10:58:53 +02:00
#REMOVEME? ynh_script_progression --message="Removing PostgreSQL database..." --weight=1
#REMOVEME? ynh_psql_remove_db --db_user=$db_user --db_name=$db_name
fi
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2023-06-04 10:58:53 +02:00
#REMOVEME? ynh_script_progression --message="Removing app main directory..." --weight=1
# Remove the app directory securely
2023-06-04 10:58:53 +02:00
#REMOVEME? ynh_secure_remove --file="$install_dir"
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
2020-11-13 16:59:16 +01:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
#=================================================
# REMOVE PHP-FPM CONFIGURATION
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=1
2020-11-13 16:59:16 +01:00
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config
#=================================================
2022-07-13 17:22:05 +02:00
# REMOVE DEPENDENCIES
#=================================================
2023-06-04 10:58:53 +02:00
#REMOVEME? ynh_script_progression --message="Removing dependencies..." --weight=1
2022-07-13 17:22:05 +02:00
# Remove metapackage and its dependencies
2023-06-04 10:58:53 +02:00
#REMOVEME? ynh_remove_app_dependencies
#=================================================
2022-07-13 17:22:05 +02:00
# REMOVE FAIL2BAN CONFIGURATION
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Removing Fail2Ban configuration..." --weight=1
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
2018-11-08 11:08:11 +01:00
#=================================================
2022-07-13 17:22:05 +02:00
# SPECIFIC REMOVE
2018-11-08 11:08:11 +01:00
#=================================================
2022-07-13 17:22:05 +02:00
# REMOVE VARIOUS FILES
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Removing various files..." --weight=1
2018-11-08 11:08:11 +01: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
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2023-06-04 10:58:53 +02:00
#REMOVEME? ynh_script_progression --message="Removing the dedicated system user..." --weight=1
# Delete a system user
2023-06-04 10:58:53 +02:00
#REMOVEME? ynh_system_user_delete --username=$app
#=================================================
# END OF SCRIPT
#=================================================
2022-10-16 22:06:33 +02:00
ynh_script_progression --message="Removal of $app completed" --last