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

110 lines
3.5 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading installation settings..."
app=$YNH_APP_INSTANCE_NAME
2020-04-23 00:03:42 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user="$db_name"
2020-04-23 00:03:42 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2020-10-14 07:20:18 +02:00
database=$(ynh_app_setting_get --app=$app --key=database)
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE THE DATABASE
#=================================================
2020-11-13 11:25:58 +01:00
if [ $database -eq 1 ]; then
2020-11-13 11:25:58 +01:00
# Removing MySQL database
ynh_script_progression --message="Removing MySQL database..."
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
elif [ $database -eq 2 ]; then
2020-11-13 11:25:58 +01:00
# Removing PostgreSQL database
ynh_script_progression --message="Removing postgresql database..."
ynh_psql_remove_db --db_user=$db_user --db_name=$db_name
fi
#=================================================
2020-04-23 00:03:42 +02:00
# REMOVE DEPENDENCIES
#=================================================
ynh_script_progression --message="Removing dependencies..."
2020-04-23 00:03:42 +02:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
#=================================================
# REMOVE APP MAIN DIR
#=================================================
ynh_script_progression --message="Removing app main directory..."
# Remove the app directory securely
2020-04-23 00:03:42 +02:00
ynh_secure_remove --file="$final_path"
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2020-11-13 16:59:16 +01:00
ynh_script_progression --message="Removing NGINX web server configuration..."
2020-11-13 16:59:16 +01:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
#=================================================
# REMOVE PHP-FPM CONFIGURATION
#=================================================
2020-11-13 16:59:16 +01:00
ynh_script_progression --message="Removing PHP-FPM configuration..."
2020-11-13 16:59:16 +01:00
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
ynh_script_progression --message="Removing logrotate configuration..."
# Remove the app-specific logrotate config
ynh_remove_logrotate
#=================================================
# REMOVE THE CRON FILE
#=================================================
# Remove a cron file
2020-04-23 00:03:42 +02:00
ynh_secure_remove --file="/etc/cron.d/$app"
2018-11-08 11:08:11 +01:00
#=================================================
# REMOVE FAIL2BAN CONFIGURATION
#=================================================
2020-11-13 16:59:16 +01:00
ynh_script_progression --message="Removing Fail2Ban configuration..."
2018-11-08 11:08:11 +01:00
ynh_remove_fail2ban_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
ynh_script_progression --message="Removing the dedicated system user..."
# Delete a system user
2020-04-23 00:03:42 +02:00
ynh_system_user_delete --username=$app
#=================================================
# END OF SCRIPT
#=================================================
2020-11-13 11:25:58 +01:00
ynh_script_progression --message="Removal of $app completed"