2019-08-05 01:29:15 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-12-29 23:23:32 +01:00
|
|
|
ynh_print_info --message="Loading installation settings..."
|
2019-08-05 01:29:15 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-12-29 23:23:32 +01:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2019-08-05 01:29:15 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
2019-12-29 23:23:32 +01:00
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
2019-08-05 01:29:15 +02:00
|
|
|
#=================================================
|
2019-12-29 23:23:32 +01:00
|
|
|
ynh_print_info --message="Removing service integration in YunoHost..."
|
2019-08-05 01:29:15 +02:00
|
|
|
|
2019-12-29 23:23:32 +01:00
|
|
|
# Remove the service from the list of services known by Yunohost (added from `yunohost service add`)
|
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null
|
2019-08-05 01:29:15 +02:00
|
|
|
then
|
2019-12-29 23:23:32 +01:00
|
|
|
ynh_print_info --message="Removing $app service..."
|
|
|
|
yunohost service remove $app
|
2019-08-05 01:29:15 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STOP AND REMOVE SERVICE
|
|
|
|
#=================================================
|
2019-12-29 23:23:32 +01:00
|
|
|
ynh_print_info --message="Stopping and removing the systemd service..."
|
2019-08-05 01:29:15 +02:00
|
|
|
|
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
2019-12-29 23:23:32 +01:00
|
|
|
ynh_print_info --message="Removing dependencies..."
|
2019-08-05 01:29:15 +02:00
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2019-12-29 23:23:32 +01:00
|
|
|
ynh_print_info --message="Removing app main directory..."
|
2019-08-05 01:29:15 +02:00
|
|
|
|
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove --file="$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-09-21 09:02:06 +02:00
|
|
|
ynh_print_info --message="Removing NGINX web server configuration..."
|
2019-08-05 01:29:15 +02:00
|
|
|
|
2020-09-21 09:02:06 +02:00
|
|
|
# Remove the dedicated NGINX config
|
2019-08-05 01:29:15 +02:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
2019-12-29 23:23:32 +01:00
|
|
|
ynh_print_info --message="Removing logrotate configuration..."
|
2019-08-05 01:29:15 +02:00
|
|
|
|
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE FAIL2BAN CONFIGURATION
|
|
|
|
#=================================================
|
2020-09-21 09:02:06 +02:00
|
|
|
ynh_print_info --message="Removing Fail2Ban configuration..."
|
2019-08-05 01:29:15 +02:00
|
|
|
|
2020-09-21 09:02:06 +02:00
|
|
|
# Remove the dedicated Fail2Ban config
|
2019-08-05 01:29:15 +02:00
|
|
|
ynh_remove_fail2ban_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE THE LOG FILE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the log files
|
2020-01-12 21:42:15 +01:00
|
|
|
ynh_secure_remove --file="/var/log/$app"
|
2019-08-05 01:29:15 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2019-12-29 23:23:32 +01:00
|
|
|
ynh_print_info --message="Removing the dedicated system user..."
|
2019-08-05 01:29:15 +02:00
|
|
|
|
|
|
|
# Delete a system user
|
2019-12-29 23:23:32 +01:00
|
|
|
ynh_system_user_delete --username=$app
|
2019-08-05 01:29:15 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-12-29 23:23:32 +01:00
|
|
|
ynh_print_info --message="Removal of $app completed"
|