2017-06-09 14:03:32 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
2019-04-21 15:32:30 +02:00
|
|
|
# GENERIC START
|
2017-06-09 14:03:32 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-04-21 15:32:30 +02:00
|
|
|
ynh_print_info --message="Loading installation settings..."
|
2017-06-09 14:03:32 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-04-21 15:32:30 +02:00
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2019-10-25 01:55:03 +02:00
|
|
|
home_path=$(ynh_app_setting_get --app=$app --key=home_path)
|
2017-06-09 14:03:32 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
2019-04-21 15:32:30 +02:00
|
|
|
# REMOVE SERVICE FROM ADMIN PANEL
|
2017-06-09 14:03:32 +02:00
|
|
|
#=================================================
|
|
|
|
|
2019-04-21 15:32:30 +02:00
|
|
|
# Remove a service from the admin panel, added by `yunohost service add`
|
|
|
|
if yunohost service status $app >/dev/null 2>&1
|
2017-06-09 14:03:32 +02:00
|
|
|
then
|
2019-04-21 15:32:30 +02:00
|
|
|
ynh_print_info --message="Removing $app service"
|
|
|
|
yunohost service remove $app
|
2017-06-09 14:03:32 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
2019-04-21 15:32:30 +02:00
|
|
|
# STOP AND REMOVE SERVICE
|
2017-06-09 14:03:32 +02:00
|
|
|
#=================================================
|
2019-04-21 15:32:30 +02:00
|
|
|
ynh_print_info --message="Stopping and removing the systemd service"
|
2017-06-09 14:03:32 +02:00
|
|
|
|
2019-04-21 15:32:30 +02:00
|
|
|
# Remove the dedicated systemd config
|
|
|
|
ynh_remove_systemd_config
|
2017-06-09 14:03:32 +02:00
|
|
|
|
2019-04-21 15:32:30 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Removing dependencies"
|
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Removing app main directory"
|
|
|
|
|
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove --file="$final_path"
|
2019-10-25 01:55:03 +02:00
|
|
|
ynh_secure_remove --file="$home_path"
|
2019-04-21 15:32:30 +02:00
|
|
|
|
2019-10-27 09:26:04 +01:00
|
|
|
# Remove the log files
|
|
|
|
ynh_secure_remove "/var/log/$app"
|
|
|
|
|
2019-04-21 15:32:30 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Removing logrotate configuration"
|
|
|
|
|
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
2017-06-09 14:03:32 +02:00
|
|
|
#=================================================
|
2019-04-21 15:32:30 +02:00
|
|
|
# CLOSE A PORT
|
2017-06-09 14:03:32 +02:00
|
|
|
#=================================================
|
|
|
|
|
2019-04-21 15:32:30 +02:00
|
|
|
if yunohost firewall list | grep -q "\- $port$"
|
|
|
|
then
|
|
|
|
ynh_print_info --message="Closing port $port"
|
|
|
|
ynh_exec_warn_less yunohost firewall disallow UDP $port
|
2017-06-09 14:03:32 +02:00
|
|
|
fi
|
2019-04-21 15:32:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Removing the dedicated system user"
|
|
|
|
|
|
|
|
# Delete a system user
|
|
|
|
ynh_system_user_delete --username=$app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_print_info --message="Removal of $app completed"
|