1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/spip_ynh.git synced 2024-09-03 20:25:59 +02:00
spip_ynh/scripts/remove

14 lines
389 B
Text
Raw Normal View History

2015-04-28 17:32:31 +02:00
#!/bin/bash
db_user=spip
db_name=spip
root_pwd=$(sudo cat /etc/yunohost/mysql)
domain=$(sudo yunohost app setting spip domain)
mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
sudo rm -rf /var/www/spip
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