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

61 lines
1.6 KiB
Text
Raw Normal View History

2016-09-09 11:07:28 +02:00
#!/bin/bash
2018-04-14 22:02:50 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2018-04-14 22:02:50 +02:00
source _common.sh
2017-09-17 11:03:01 +02:00
source /usr/share/yunohost/helpers
2016-09-09 11:07:28 +02:00
2018-04-14 22:02:50 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
2017-09-17 11:03:01 +02:00
domain=$(ynh_app_setting_get "$app" domain)
2018-04-14 22:02:50 +02:00
port=$(ynh_app_setting_get "$app" port)
final_path=$(ynh_app_setting_get "$app" final_path)
#=================================================
# STANDARD REMOVE
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
# Remove the dedicated systemd config
ynh_remove_systemd_config
#=================================================
# REMOVE DEPENDENCIES
#=================================================
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
ynh_remove_nodejs
#=================================================
# REMOVE APP MAIN DIR
#=================================================
# Remove the app directory securely
ynh_secure_remove "$final_path"
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2016-09-09 11:07:28 +02:00
2018-04-14 22:02:50 +02:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
2016-09-09 11:07:28 +02:00
2018-04-14 22:02:50 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2018-04-14 22:02:50 +02:00
# Delete a system user
ynh_system_user_delete "$app"