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

114 lines
3.7 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
#=================================================
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..."
2017-06-09 14:03:32 +02:00
2024-01-08 13:13:58 +01:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2017-06-09 14:03:32 +02:00
2024-01-08 13:13:58 +01:00
#REMOVEME? port=$(ynh_app_setting_get --app=$app --key=port)
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
#REMOVEME? data_dir=$(ynh_app_setting_get --app=$app --key=data_dir)
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
#=================================================
2022-03-13 18:11:28 +01:00
# REMOVE LOGROTATE CONFIGURATION
2019-04-21 15:32:30 +02:00
#=================================================
2022-03-13 18:11:28 +01:00
ynh_script_progression --message="Removing logrotate configuration..."
2019-04-21 15:32:30 +02:00
2022-03-13 18:11:28 +01:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
2019-04-21 15:32:30 +02:00
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_script_progression --message="Removing app main directory..."
2019-04-21 15:32:30 +02:00
# Remove the app directory securely
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_secure_remove --file="$install_dir"
2019-10-27 09:26:04 +01:00
2022-06-19 04:22:13 +02:00
#=================================================
# REMOVE DATA DIR
#=================================================
# Remove the data directory if --purge option is used
if [ "${YNH_APP_PURGE:-0}" -eq 1 ]
then
ynh_script_progression --message="Removing app data directory..."
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_secure_remove --file="$data_dir"
2022-06-19 04:22:13 +02:00
fi
2019-04-21 15:32:30 +02:00
#=================================================
2022-03-13 18:11:28 +01:00
# REMOVE DEPENDENCIES
2019-04-21 15:32:30 +02:00
#=================================================
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_script_progression --message="Removing dependencies..."
2019-04-21 15:32:30 +02:00
2022-03-13 18:11:28 +01:00
# Remove metapackage and its dependencies
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_remove_app_dependencies
2019-04-21 15:32:30 +02:00
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
2022-03-13 18:11:28 +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..."
# Remove the log files
ynh_secure_remove --file="/var/log/$app"
2019-04-21 15:32:30 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_script_progression --message="Removing the dedicated system user..."
2019-04-21 15:32:30 +02:00
# Delete a system user
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_system_user_delete --username=$app
2019-04-21 15:32:30 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2020-12-03 11:19:43 +01:00
ynh_script_progression --message="Removal of $app completed"