1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/minetest_ynh.git synced 2024-09-03 20:36:00 +02:00
minetest_ynh/scripts/remove

112 lines
3.4 KiB
Text
Raw Normal View History

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
domain=$(ynh_app_setting_get --app=$app --key=domain)
port=$(ynh_app_setting_get --app=$app --key=port)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2019-08-15 14:21:00 +02:00
use_postgresql=$(ynh_app_setting_get --app=$app --key=use_postgresql)
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 THE POSTGRESQL DATABASE
#=================================================
2019-08-15 14:21:00 +02:00
if [ $use_postgresql -eq 1 ]
2019-04-21 15:32:30 +02:00
then
ynh_print_info --message="Removing the PostgreSQL database"
# Remove a database if it exists, along with the associated user
ynh_psql_remove_db --user=$db_user --db=$db_name
fi
#=================================================
# 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"
ynh_secure_remove --file="/home/yunohost.app/$app/"
#=================================================
# 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"