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

105 lines
3.3 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
#=================================================
2020-12-03 11:19:43 +01:00
ynh_script_progression --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
#=================================================
2021-05-16 18:15:51 +02:00
# REMOVE SERVICE INTEGRATION IN YUNOHOST
2017-06-09 14:03:32 +02:00
#=================================================
2021-05-16 18:15:51 +02: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
2017-06-09 14:03:32 +02:00
then
2021-05-16 18:15:51 +02:00
ynh_script_progression --message="Removing $app service integration..."
2019-04-21 15:32:30 +02:00
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
#=================================================
2021-05-16 18:15:51 +02:00
ynh_script_progression --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
#=================================================
2021-05-16 18:15:51 +02:00
ynh_script_progression --message="Removing dependencies..."
2019-04-21 15:32:30 +02:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2021-05-16 18:15:51 +02:00
ynh_script_progression --message="Removing app main directory..."
2019-04-21 15:32:30 +02:00
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
2019-10-27 09:26:04 +01:00
2019-04-21 15:32:30 +02:00
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
2021-05-16 18:15:51 +02:00
ynh_script_progression --message="Removing logrotate configuration..."
2019-04-21 15:32:30 +02:00
# 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
2020-12-03 11:19:43 +01:00
ynh_script_progression --message="Closing port $port"
2019-04-21 15:32:30 +02:00
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
2021-05-16 18:15:51 +02:00
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE VARIOUS FILES
#=================================================
ynh_script_progression --message="Removing various files..."
ynh_secure_remove --file="$home_path"
# Remove the log files
ynh_secure_remove --file="/var/log/$app"
2019-04-21 15:32:30 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2021-05-16 18:15:51 +02:00
ynh_script_progression --message="Removing the dedicated system user..."
2019-04-21 15:32:30 +02:00
# Delete a system user
ynh_system_user_delete --username=$app
#=================================================
# END OF SCRIPT
#=================================================
2020-12-03 11:19:43 +01:00
ynh_script_progression --message="Removal of $app completed"