2013-12-12 12:12:22 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2013-12-12 12:15:19 +01:00
|
|
|
db_user=ffsync
|
|
|
|
db_name=ffsync
|
2013-12-12 12:12:22 +01:00
|
|
|
root_pwd=$(sudo cat /etc/yunohost/mysql)
|
|
|
|
domain=$(sudo yunohost app setting ffsync domain)
|
|
|
|
|
|
|
|
mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
|
2014-11-15 17:24:32 +01:00
|
|
|
sudo rm -rf /opt/yunohost/ffsync
|
2013-12-12 12:12:22 +01:00
|
|
|
sudo rm -f /etc/nginx/conf.d/$domain.d/ffsync.conf
|
2014-11-15 17:24:32 +01:00
|
|
|
sudo rm -f /etc/uwsgi/apps-enabled/searx.ini
|
|
|
|
sudo rm -f /etc/uwsgi/apps-available/searx.ini
|
|
|
|
|
|
|
|
sudo service uwsgi stop
|
|
|
|
sudo killall uwsgi
|
|
|
|
sudo service uwsgi start
|
|
|
|
sudo userdel ffsync
|