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

105 lines
3.3 KiB
Text
Raw Normal View History

2021-07-07 21:27:30 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2021-07-10 17:25:49 +02:00
ynh_script_progression --message="Loading installation settings..."
2021-07-07 21:27:30 +02:00
app=$YNH_APP_INSTANCE_NAME
2022-07-29 21:01:48 +02:00
port=$(ynh_app_setting_get --app=$app --key=port)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2021-07-07 21:27:30 +02:00
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE SERVICE INTEGRATION IN YUNOHOST
#=================================================
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
2022-07-29 21:01:48 +02:00
if ynh_exec_warn_less yunohost service status $app >/dev/null
2021-07-07 21:27:30 +02:00
then
2021-07-10 17:25:49 +02:00
ynh_script_progression --message="Removing $app service integration..."
2022-07-29 21:01:48 +02:00
yunohost service remove $app
2021-07-07 21:27:30 +02:00
fi
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2021-07-10 17:25:49 +02:00
ynh_script_progression --message="Stopping and removing the systemd service..."
2021-07-07 21:27:30 +02:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
#=================================================
2022-01-07 00:42:59 +01:00
# REMOVE LOGROTATE CONFIGURATION
2021-07-07 21:27:30 +02:00
#=================================================
2022-01-07 00:42:59 +01:00
ynh_script_progression --message="Removing logrotate configuration..."
2021-07-07 21:27:30 +02:00
2022-01-07 00:42:59 +01:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
2021-07-07 21:27:30 +02:00
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2021-07-10 17:25:49 +02:00
ynh_script_progression --message="Removing app main directory..."
2021-07-07 21:27:30 +02:00
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
#=================================================
2022-01-07 00:42:59 +01:00
# REMOVE DEPENDENCIES
2021-07-07 21:27:30 +02:00
#=================================================
2022-01-07 00:42:59 +01:00
ynh_script_progression --message="Removing dependencies..."
2021-07-07 21:27:30 +02:00
2022-01-07 00:42:59 +01:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2021-07-07 21:27:30 +02:00
#=================================================
# CLOSE A PORT
#=================================================
if yunohost firewall list | grep -q "\- $port$"
then
2021-07-10 17:25:49 +02:00
ynh_script_progression --message="Closing port $port..."
2022-07-29 21:01:48 +02:00
ynh_exec_warn_less yunohost firewall disallow TCP $port
2021-07-07 21:27:30 +02:00
fi
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE VARIOUS FILES
#=================================================
2021-07-10 17:25:49 +02:00
ynh_script_progression --message="Removing various files..."
2021-07-07 21:27:30 +02:00
# Remove a directory securely
ynh_secure_remove --file="/etc/$app"
# Remove the log files
ynh_secure_remove --file="/var/log/$app"
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2021-07-10 17:25:49 +02:00
ynh_script_progression --message="Removing the dedicated system user..."
2021-07-07 21:27:30 +02:00
# Delete a system user
2022-07-29 21:01:48 +02:00
ynh_system_user_delete --username=$app
2021-07-07 21:27:30 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2021-07-10 17:25:49 +02:00
ynh_script_progression --message="Removal of $app completed"