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

92 lines
2.6 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
#=================================================
2019-02-14 19:40:31 +01:00
ynh_print_info "Loading installation settings..."
2018-08-26 19:04:08 +02:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
port=$(ynh_app_setting_get $app port)
2018-08-26 19:04:08 +02:00
#=================================================
# STANDARD REMOVE
#=================================================
2019-02-14 19:40:31 +01:00
# REMOVE SERVICE FROM ADMIN PANEL
2018-08-26 19:04:08 +02:00
#=================================================
2019-02-14 19:40:31 +01:00
# Remove a service from the admin panel, added by `yunohost service add`
if yunohost service status | grep -q $app
then
ynh_print_info "Removing $app service"
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
#=================================================
2019-02-14 19:40:31 +01:00
ynh_print_info "Stopping and removing the 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
#=================================================
2019-02-14 19:40:31 +01:00
ynh_print_info "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
#=================================================
2019-02-14 19:40:31 +01:00
ynh_print_info "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 "$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
#=================================================
2019-02-14 19:40:31 +01:00
ynh_print_info "Removing nginx configuration"
2018-08-26 19:04:08 +02:00
2019-02-14 19:40:31 +01:00
# Remove the dedicated nginx config
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
2019-02-14 19:40:31 +01:00
ynh_print_info "Closing port $port"
ynh_exec_warn_less yunohost firewall disallow TCP $port
2018-08-26 19:04:08 +02:00
fi
#=================================================
# GENERIC FINALISATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2019-02-14 19:40:31 +01:00
ynh_print_info "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
2018-08-26 19:04:08 +02:00
ynh_system_user_delete $app
2019-02-14 19:40:31 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info "Removal of $app completed"