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

93 lines
2.9 KiB
Text
Raw Normal View History

2018-08-26 19:04:08 +02:00
#!/bin/bash
#=================================================
2019-02-14 19:40:31 +01:00
# GENERIC START
2018-08-26 19:04:08 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2021-01-06 11:55:46 +01:00
ynh_script_progression --message="Loading installation settings..."
2018-08-26 19:04:08 +02:00
app=$YNH_APP_INSTANCE_NAME
2021-01-06 11:55:46 +01:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
port=$(ynh_app_setting_get --app=$app --key=port)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2018-08-26 19:04:08 +02:00
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE SERVICE INTEGRATION IN YUNOHOST
2018-08-26 19:04:08 +02:00
#=================================================
2021-06-30 05:08:36 +02:00
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
2021-01-06 11:55:46 +01:00
if ynh_exec_warn_less yunohost service status $app >/dev/null
2019-02-14 19:40:31 +01:00
then
2021-01-06 11:55:46 +01:00
ynh_script_progression --message="Removing $app service integration..."
2019-02-14 19:40:31 +01:00
yunohost service remove $app
fi
2018-08-26 19:04:08 +02:00
#=================================================
2019-02-14 19:40:31 +01:00
# STOP AND REMOVE SERVICE
2018-08-26 19:04:08 +02:00
#=================================================
ynh_script_progression --message="Stopping and removing the systemd service..."
2018-08-26 19:04:08 +02:00
2019-02-14 19:40:31 +01:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
2018-08-26 19:04:08 +02:00
#=================================================
# REMOVE DEPENDENCIES
#=================================================
2021-01-06 11:55:46 +01:00
ynh_script_progression --message="Removing dependencies..."
2018-08-26 19:04:08 +02:00
2019-02-14 19:40:31 +01:00
# Remove metapackage and its dependencies
2018-08-26 19:04:08 +02:00
ynh_remove_app_dependencies
#=================================================
2019-02-14 19:40:31 +01:00
# REMOVE APP MAIN DIR
2018-08-26 19:04:08 +02:00
#=================================================
2021-01-06 11:55:46 +01:00
ynh_script_progression --message="Removing app main directory..."
2018-08-26 19:04:08 +02:00
2019-02-14 19:40:31 +01:00
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
2018-08-26 19:04:08 +02:00
#=================================================
2019-02-14 19:40:31 +01:00
# REMOVE NGINX CONFIGURATION
2018-08-26 19:04:08 +02:00
#=================================================
ynh_script_progression --message="Removing NGINX web server configuration..."
2018-08-26 19:04:08 +02:00
# Remove the dedicated NGINX config
2019-02-14 19:40:31 +01:00
ynh_remove_nginx_config
2018-08-26 19:04:08 +02:00
#=================================================
# CLOSE A PORT
#=================================================
if yunohost firewall list | grep -q "\- $port$"
2018-08-26 19:04:08 +02:00
then
ynh_script_progression --message="Closing port $port..."
2019-02-14 19:40:31 +01:00
ynh_exec_warn_less yunohost firewall disallow TCP $port
2018-08-26 19:04:08 +02:00
fi
#=================================================
2021-04-10 17:46:40 +02:00
# GENERIC FINALIZATION
2018-08-26 19:04:08 +02:00
#=================================================
# REMOVE DEDICATED USER
#=================================================
2021-01-06 11:55:46 +01:00
ynh_script_progression --message="Removing the dedicated system user..."
2018-08-26 19:04:08 +02:00
2019-02-14 19:40:31 +01:00
# Delete a system user
2021-01-06 11:55:46 +01:00
ynh_system_user_delete --username=$app
2019-02-14 19:40:31 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-01-06 11:55:46 +01:00
ynh_script_progression --message="Removal of $app completed"