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

72 lines
2.1 KiB
Text
Raw Normal View History

2014-01-13 13:50:38 +01:00
#!/bin/bash
2017-09-28 18:02:10 +02:00
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-02-13 21:13:59 +01:00
source _common.sh
2017-09-28 18:02:10 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-02-17 20:55:13 +01:00
ynh_print_info "Loading installation settings..."
2017-09-28 18:02:10 +02:00
app=$YNH_APP_INSTANCE_NAME
2014-01-13 13:50:38 +01:00
2017-09-28 18:02:10 +02:00
domain=$(ynh_app_setting_get $app domain)
final_path=$(ynh_app_setting_get $app final_path)
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE THE MAIN DIR OF THE APP
#=================================================
2019-02-17 20:55:13 +01:00
ynh_print_info "Removing app main directory"
2017-09-28 18:02:10 +02:00
# Remove the app directory securely
ynh_secure_remove "$final_path"
#=================================================
# REMOVE THE NGINX CONFIGURATION
#=================================================
2019-02-17 20:55:13 +01:00
ynh_print_info "Removing nginx web server configuration"
2017-09-28 18:02:10 +02:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
#=================================================
# REMOVE THE PHP-FPM CONFIGURATION
#=================================================
2019-02-17 20:55:13 +01:00
ynh_print_info "Removing php-fpm configuration"
2017-09-28 18:02:10 +02:00
# Remove the dedicated php-fpm config
ynh_remove_fpm_config
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE THE DATA DIRECTORY
#=================================================
2019-02-17 20:55:13 +01:00
ynh_print_info "Removing data directory"
2017-09-28 18:02:10 +02:00
ynh_secure_remove "/home/yunohost.app/$app"
2017-09-28 18:02:10 +02:00
#=================================================
# GENERIC FINALISATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2019-02-17 20:55:13 +01:00
ynh_print_info "Removing the dedicated system user"
2014-01-13 13:50:38 +01:00
2017-09-28 18:02:10 +02:00
# Delete a system user
ynh_system_user_delete $app
2019-02-17 20:55:13 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info "Removal of $app completed"