2014-07-06 13:21:10 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-09-11 10:15:45 +02:00
|
|
|
# See comments in install script
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-07-06 13:21:10 +02:00
|
|
|
|
2016-09-11 10:15:45 +02:00
|
|
|
# Source YunoHost helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
2014-07-06 13:21:10 +02:00
|
|
|
|
2016-09-11 10:15:45 +02:00
|
|
|
# Retrieve app settings
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2014-07-06 13:21:10 +02:00
|
|
|
|
2016-09-11 10:15:45 +02:00
|
|
|
# Remove sources
|
|
|
|
sudo rm -rf /var/www/$app
|
|
|
|
|
|
|
|
# Remove nginx configuration file
|
|
|
|
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
sudo rm -rf /home/yunohost.app/$app
|
|
|
|
|
|
|
|
# Drop MySQL database and user
|
|
|
|
dbname=$app
|
|
|
|
dbuser=$app
|
|
|
|
ynh_mysql_drop_db "$dbname" || true
|
|
|
|
ynh_mysql_drop_user "$dbuser" || true
|
|
|
|
|
|
|
|
# Reload nginx service
|
2014-07-06 13:21:10 +02:00
|
|
|
sudo service nginx reload
|
|
|
|
|
2016-09-11 10:15:45 +02:00
|
|
|
|