mirror of
https://github.com/YunoHost-Apps/bozon_ynh.git
synced 2024-09-03 18:16:09 +02:00
42 lines
1 KiB
Bash
42 lines
1 KiB
Bash
#! /bin/bash
|
|
|
|
# causes the shell to exit if any subcommand or pipeline returns a non-zero status
|
|
set -e
|
|
# causes the shell to exit if you try to use an uninitialised variable
|
|
set -u
|
|
|
|
ynh_version=$(sudo yunohost -v | grep "moulinette:" | cut -d' ' -f2 | cut -d'.' -f1,2)
|
|
|
|
#retrieve arguments
|
|
if [ $ynh_version = "2.4" ]; then
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
# Source app helpers
|
|
. /usr/share/yunohost/helpers
|
|
else
|
|
app=bozon
|
|
fi
|
|
domain=$(sudo yunohost app setting $app domain)
|
|
|
|
if [ -e "/var/www/$app" ]; then
|
|
echo "Delete app"
|
|
sudo rm -rf /var/www/$app
|
|
fi
|
|
if [ -e "/etc/nginx/conf.d/$domain.d/$app.conf" ]; then
|
|
echo "Delete Nginx config"
|
|
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
|
|
fi
|
|
if [ -e "/etc/php5/fpm/pool.d/$app.conf" ]; then
|
|
echo "Delete fpm config"
|
|
sudo rm -f /etc/php5/fpm/pool.d/$app.conf
|
|
fi
|
|
if [ -e "/home/yunohost.app/$app" ]; then
|
|
echo "Delete datas"
|
|
sudo rm -rf /home/yunohost.app/$app
|
|
fi
|
|
|
|
# Restart services
|
|
sudo service php5-fpm restart || true
|
|
sudo service nginx restart || true
|
|
sudo yunohost app ssowatconf
|
|
|
|
echo -e "\e[0m"
|