#!/bin/bash source .fonctions # Charge les fonctions génériques habituellement utilisées dans le script # Récupère les infos de l'application. YNH_VERSION # Récupère le numéro de version de Yunohost. if [ $ynh_version = "2.4" ]; then app=$YNH_APP_INSTANCE_NAME # Source app helpers source /usr/share/yunohost/helpers else app=radicale fi domain=$(sudo yunohost app setting $app domain) REMOVE_APP_DIR # Suppression du dossier de l'application if [ -e "/opt/yunohost/$app" ]; then echo "Delete virtualenv" sudo rm -r "/opt/yunohost/$app" fi if [ -e "/etc/$app/" ]; then echo "Delete radicale config" sudo rm -r "/etc/$app/" fi # Suppression de la configuration uwsgi # Stoppe le service uwsgi sudo service uwsgi stop if [ -e "/etc/uwsgi/apps-available/radicale.ini" ]; then echo "Delete uwsgi config" sudo rm "/etc/uwsgi/apps-available/radicale.ini" fi if [ -h "/etc/uwsgi/apps-enabled/radicale.ini" ]; then echo "Delete uwsgi config" sudo rm "/etc/uwsgi/apps-enabled/radicale.ini" fi if grep -q "^radicale:" /etc/passwd # Test l'existence de l'utilisateur then sudo userdel radicale fi # Redémarre le service uwsgi sudo service uwsgi start REMOVE_NGINX_CONF # Suppression de la configuration nginx REMOVE_FPM_CONF # Suppression de la configuration du pool php-fpm REMOVE_LOGROTATE_CONF # Suppression de la configuration de logrotate if [ $ynh_version != "2.4" ] then # Retire le hook sur la création de nouveaux utilisateurs sudo yunohost hook remove radicale fi # Régénère la configuration de SSOwat sudo yunohost app ssowatconf echo -e "\e[0m" # Restore normal color