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

57 lines
1.7 KiB
Text
Raw Normal View History

2014-01-13 13:50:38 +01:00
#!/bin/bash
2017-05-19 21:36:58 +02:00
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
2014-01-13 13:50:38 +01:00
2017-05-19 21:36:58 +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
#=================================================
ynh_secure_remove "$final_path" # Suppression du dossier de l'application
#=================================================
# REMOVE THE NGINX CONFIGURATION
#=================================================
ynh_remove_nginx_config # Suppression de la configuration nginx
#=================================================
# REMOVE THE PHP-FPM CONFIGURATION
#=================================================
ynh_remove_fpm_config # Suppression de la configuration du pool php-fpm
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE THE DATA DIRECTORY
#=================================================
# Suppression d'un dossier
ynh_secure_remove "/home/yunohost.app/$app"
2017-05-19 21:36:58 +02:00
#=================================================
# GENERIC FINALISATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2014-01-13 13:50:38 +01:00
2017-05-19 21:36:58 +02:00
ynh_system_user_delete $app