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

71 lines
2.2 KiB
Text
Raw Normal View History

2018-11-27 17:09:29 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2020-12-12 08:56:05 +01:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2018-11-27 17:09:29 +01:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
final_path=$(ynh_app_setting_get $app final_path)
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2020-12-12 08:56:05 +01:00
ynh_script_progression --message="Removing app main directory..." --weight=3
2018-11-27 17:09:29 +01:00
# Remove the app directory securely
2020-12-12 08:56:05 +01:00
ynh_secure_remove --file="$final_path"
2018-11-27 17:09:29 +01:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2020-12-12 08:56:05 +01:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=2
2018-11-27 17:09:29 +01:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
#=================================================
# REMOVE PHP-FPM CONFIGURATION
#=================================================
2020-12-12 08:56:05 +01:00
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=1
2018-11-27 17:09:29 +01:00
# Remove the dedicated php-fpm config
ynh_remove_fpm_config
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
2020-12-12 08:56:05 +01:00
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
2018-11-27 17:09:29 +01:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2020-12-12 08:56:05 +01:00
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
2018-11-27 17:09:29 +01:00
# Delete a system user
2020-12-12 08:56:05 +01:00
ynh_system_user_delete --username=$app
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last