2015-04-28 17:32:31 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-08-30 00:22:47 +02:00
|
|
|
# See comments in install script
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
# Source YunoHost helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
# Retrieve app settings
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
|
2015-04-28 17:32:31 +02:00
|
|
|
db_user=spip
|
|
|
|
db_name=spip
|
|
|
|
root_pwd=$(sudo cat /etc/yunohost/mysql)
|
|
|
|
|
|
|
|
mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
|
|
|
|
sudo rm -rf /var/www/spip
|
2015-04-28 18:48:20 +02:00
|
|
|
sudo rm -f /etc/nginx/conf.d/$domain.d/spip.conf
|
|
|
|
sudo rm -f /etc/php5/fpm/pool.d/spip.conf
|
|
|
|
|
|
|
|
sudo service php5-fpm restart
|
|
|
|
sudo service nginx reload
|