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