mirror of
https://github.com/YunoHost-Apps/rainloop_ynh.git
synced 2024-09-03 20:16:18 +02:00
15 lines
414 B
Text
15 lines
414 B
Text
|
#!/bin/bash
|
||
|
|
||
|
db_user=rainloop
|
||
|
db_name=rainloop
|
||
|
root_pwd=$(sudo cat /etc/yunohost/mysql)
|
||
|
domain=$(sudo yunohost app setting rainloop domain)
|
||
|
|
||
|
mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
|
||
|
sudo rm -rf /var/www/rainloop
|
||
|
sudo rm -f /etc/nginx/conf.d/$domain.d/rainloop.conf
|
||
|
sudo rm -f /etc/php5/fpm/pool.d/rainloop.conf
|
||
|
|
||
|
sudo service php5-fpm restart
|
||
|
sudo service nginx reload
|