1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/friendica_ynh.git synced 2024-09-03 18:36:14 +02:00
friendica_ynh/scripts/remove
Développeur égaré 81a1312fd2 init
2015-02-16 23:19:37 +01:00

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