2015-11-11 18:03:16 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-02 15:44:54 +01:00
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -u
|
2015-11-11 18:03:16 +01:00
|
|
|
|
2017-03-10 22:10:45 +01:00
|
|
|
# Get multi-instances specific variables
|
2017-03-02 15:44:54 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2017-03-10 22:10:45 +01:00
|
|
|
# Source app helpers
|
|
|
|
. /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
# Retrieve app settings
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
|
|
|
|
# Delete app directory and configurations
|
|
|
|
sudo rm -rf "/var/www/${app}"
|
|
|
|
sudo rm -f "/etc/php5/fpm/pool.d/${app}.conf"
|
|
|
|
sudo rm -f "/etc/php5/fpm/conf.d/20-${app}.ini"
|
|
|
|
[[ -n $domain ]] && sudo rm -f "/etc/nginx/conf.d/${domain}.d/${app}.conf"
|
|
|
|
|
|
|
|
# Reload services
|
|
|
|
sudo service php5-fpm restart || true
|
|
|
|
sudo service nginx reload || true
|