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

82 lines
2.7 KiB
Text
Raw Normal View History

2020-12-12 18:10:50 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
ynh_print_info "Loading installation settings..."
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
#=================================================
# STANDARD REMOVE
#=================================================
2020-12-17 23:05:41 +01:00
# REMOVE SERVICE INTEGRATION IN YUNOHOST
2020-12-12 18:10:50 +01:00
#=================================================
2020-12-17 23:05:41 +01: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
then
2021-06-01 21:31:27 +02:00
ynh_script_progression --message="Removing $app service integration..." --weight=1
2020-12-17 23:05:41 +01:00
yunohost service remove $app
fi
2020-12-12 18:10:50 +01:00
#=================================================
# REMOVE DEPENDENCIES
#=================================================
ynh_script_progression --message="Removing dependencies..." --weight=2
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2021-06-01 21:31:27 +02:00
#=================================================
# REMOVE APP MAIN DIR
#=================================================
ynh_script_progression --message="Removing TaskBoard main directory..." --weight=4
# Remove the app directory securely
2023-01-07 07:53:48 +01:00
ynh_secure_remove --file="$final_path"
2021-06-01 21:31:27 +02:00
2020-12-12 18:10:50 +01:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
# Remove the dedicated NGINX config
ynh_remove_nginx_config
#=================================================
# REMOVE PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=2
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
# Delete a system user
ynh_system_user_delete --username=$app
#=================================================
# END OF SCRIPT
#=================================================
2023-01-07 07:53:48 +01:00
ynh_script_progression --message="Removal of $app completed" --last