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

65 lines
1.9 KiB
Text
Raw Normal View History

2014-06-18 00:05:18 +02:00
#!/bin/bash
2017-03-01 19:37:00 +01:00
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-06-15 23:56:35 +02:00
2017-03-01 19:37:00 +01:00
source .fonctions
2016-11-08 13:32:06 +01:00
source /usr/share/yunohost/helpers
2017-03-01 19:37:00 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
2016-12-14 16:08:29 +01:00
domain=$(ynh_app_setting_get $app domain)
2017-03-01 19:37:00 +01:00
db_name=$(ynh_app_setting_get $app db_name)
2015-11-22 14:37:01 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE THE SQL BDD
#=================================================
ynh_mysql_remove_db $db_name $db_name # Suppression de la base de donnée et de l'utilisateur associé.
#=================================================
# REMOVE THE MAIN DIR OF THE APP
#=================================================
2015-11-22 14:37:01 +01:00
2016-11-08 13:07:40 +01:00
SECURE_REMOVE '/var/www/$app' # Suppression du dossier de l'application
2015-11-22 14:37:01 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
# REMOVE THE NGINX CONFIGURATION
#=================================================
2016-06-15 23:56:35 +02:00
REMOVE_NGINX_CONF # Suppression de la configuration nginx
2015-11-22 14:37:01 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
# REMOVE THE PHP-FPM CONFIGURATION
#=================================================
2016-06-15 23:56:35 +02:00
REMOVE_FPM_CONF # Suppression de la configuration du pool php-fpm
2016-05-20 00:00:38 +02:00
2017-03-01 19:37:00 +01:00
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE THE CRON FILE
#=================================================
2016-05-20 00:00:38 +02:00
if [ -e "/etc/cron.d/$app" ]; then
echo "Delete cron"
sudo rm "/etc/cron.d/$app"
fi
2017-03-01 19:37:00 +01:00
#=================================================
# GENERIC FINALISATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2016-05-20 00:00:38 +02:00
2017-03-01 19:37:00 +01:00
REMOVE_SYS_USER