mirror of
https://github.com/YunoHost-Apps/friendica_ynh.git
synced 2024-09-03 18:36:14 +02:00
13 lines
344 B
Bash
13 lines
344 B
Bash
#!/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
|