#!/bin/bash domain=$(sudo yunohost app setting seafile domain) root_pwd=$(sudo cat /etc/yunohost/mysql) sudo service seafile-server stop sudo rm -rf /var/www/seafile sudo rm -f /etc/nginx/conf.d/$domain.d/seafile.conf sudo rm -f /etc/init.d/seafile-server sudo rm -rf /home/yunohost.app/seafile-data # Remove databases mysql -u root -p$root_pwd -e "DROP DATABASE ccnetdb ; DROP DATABASE seafiledb ; DROP DATABASE seahubdb ; DROP USER seafile@localhost ;" ccnet_port=$(sudo yunohost app setting seafile ccnet_port) seafile_port=$(sudo yunohost app setting seafile seafile_port) sudo yunohost firewall disallow $ccnet_port sudo yunohost firewall disallow $seafile_port sudo yunohost service remove seafile-server # Restart services sudo service nginx reload sudo yunohost app ssowatconf