2014-10-20 16:55:53 +00:00
|
|
|
|
#!/bin/bash
|
2016-04-26 13:30:49 +00:00
|
|
|
|
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# See comments in install script
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-10-20 16:55:53 +00:00
|
|
|
|
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# Source YunoHost helpers
|
2016-06-14 12:11:00 +00:00
|
|
|
|
source /usr/share/yunohost/helpers
|
2016-05-18 20:31:45 +00:00
|
|
|
|
|
|
|
|
|
# Retrieve app settings
|
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2014-10-20 16:55:53 +00:00
|
|
|
|
|
|
|
|
|
# Remove sources
|
|
|
|
|
sudo rm -rf /var/www/$app
|
|
|
|
|
|
2016-06-14 12:09:29 +00:00
|
|
|
|
# Remove nginx configuration file
|
2014-10-20 16:55:53 +00:00
|
|
|
|
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
|
|
2016-06-14 12:09:29 +00:00
|
|
|
|
### PHP (remove if not used) ###
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# If a dedicated php-fpm process is used:
|
|
|
|
|
# sudo rm -f /etc/php5/fpm/pool.d/$app.conf
|
|
|
|
|
# sudo service php5-fpm reload
|
2016-06-14 12:09:29 +00:00
|
|
|
|
### PHP end ###
|
2015-10-27 15:03:21 +00:00
|
|
|
|
|
2016-06-14 12:09:29 +00:00
|
|
|
|
### MySQL (remove if not used) ###
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# If a MySQL database is used:
|
|
|
|
|
# # Drop MySQL database and user
|
|
|
|
|
# dbname=$app
|
|
|
|
|
# dbuser=$app
|
|
|
|
|
# ynh_mysql_drop_db "$dbname" || true
|
|
|
|
|
# ynh_mysql_drop_user "$dbuser" || true
|
2016-06-14 12:09:29 +00:00
|
|
|
|
### MySQL end ###
|
2015-10-10 19:28:09 +00:00
|
|
|
|
|
2016-06-13 20:25:00 +00:00
|
|
|
|
# Reload nginx service
|
2014-10-20 16:55:53 +00:00
|
|
|
|
sudo service nginx reload
|