2016-12-21 18:46:36 +01:00
|
|
|
#!/bin/bash
|
2016-12-23 21:24:09 +01:00
|
|
|
#set -eu
|
2016-12-21 18:46:36 +01:00
|
|
|
|
|
|
|
# Charge les fonctions génériques habituellement utilisées dans le script
|
2016-12-23 21:24:09 +01:00
|
|
|
#source fonctions
|
2016-12-21 18:46:36 +01:00
|
|
|
|
|
|
|
# Active trap pour arrêter le script si une erreur est détectée.
|
2016-12-23 21:24:09 +01:00
|
|
|
#TRAP_ON
|
2016-12-21 18:46:36 +01:00
|
|
|
|
|
|
|
# Source app helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
# We retrieve app parameters
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
# We check variables are not empty
|
2016-12-23 23:55:35 +01:00
|
|
|
|
|
|
|
CHECK_VAR () { # Vérifie que la variable n'est pas vide.
|
|
|
|
# $1 = Variable à vérifier
|
|
|
|
# $2 = Texte à afficher en cas d'erreur
|
|
|
|
test -n "$1" || (echo "$2" >&2 && false)
|
|
|
|
}
|
2016-12-21 18:46:36 +01:00
|
|
|
CHECK_VAR "$app" "app name not set"
|
|
|
|
|
|
|
|
path=$(ynh_app_setting_get $app path)
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
finalnginxconf=$(ynh_app_setting_get $app finalnginxconf)
|
|
|
|
finalphpconf=$(ynh_app_setting_get $app finalphpconf)
|
|
|
|
|
|
|
|
# Suppression du dossier de la webapp
|
|
|
|
sudo rm -rf $final_path
|
|
|
|
|
|
|
|
# Suppression de la config nginx de la webapp
|
|
|
|
sudo rm -f $finalnginxconf
|
|
|
|
sudo rm -f $finalphpconf
|
|
|
|
|
2017-02-24 14:43:49 +01:00
|
|
|
# Remove app dependencies
|
|
|
|
if ynh_package_is_installed "cops-deps"; then
|
|
|
|
ynh_package_autoremove "cops-deps"
|
|
|
|
fi
|
|
|
|
|
2016-12-23 21:40:12 +01:00
|
|
|
# We reload the services
|
2016-12-21 18:46:36 +01:00
|
|
|
sudo service php5-fpm reload
|
|
|
|
sudo service nginx reload
|
|
|
|
sudo yunohost app ssowatconf
|