2013-11-29 12:49:27 +01:00
|
|
|
#!/bin/bash
|
2014-05-29 12:09:07 +02:00
|
|
|
|
2017-03-08 23:32:42 +01:00
|
|
|
set -u
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2020-10-20 23:28:09 +02:00
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2017-03-08 23:32:42 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-11-25 22:08:24 +01:00
|
|
|
|
2016-05-13 22:29:15 +02:00
|
|
|
# Retrieve arguments
|
2017-03-08 23:32:42 +01:00
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2016-05-13 22:29:15 +02:00
|
|
|
|
|
|
|
# Remove sources and configuration
|
|
|
|
sudo rm -rf "/var/www/${app}"
|
|
|
|
sudo rm -f "/etc/nginx/conf.d/${domain}.d/${app}.conf"
|
|
|
|
|
|
|
|
# Reload services
|
2014-11-25 22:08:24 +01:00
|
|
|
sudo service nginx reload
|