mirror of
https://github.com/YunoHost-Apps/ffsync_ynh.git
synced 2024-09-03 18:26:38 +02:00
17 lines
487 B
Bash
17 lines
487 B
Bash
#!/bin/bash
|
|
|
|
db_user=ffsync
|
|
db_name=ffsync
|
|
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 ;"
|
|
sudo rm -rf /opt/yunohost/ffsync
|
|
sudo rm -f /etc/nginx/conf.d/$domain.d/ffsync.conf
|
|
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
|