mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
5f78f09c81
Former-commit-id: 97a22a7b15
19 lines
627 B
Bash
19 lines
627 B
Bash
#!/bin/bash
|
|
domain=$(sudo yunohost app setting seafile domain)
|
|
|
|
cd /var/www/seafile/seafile-server-*
|
|
sudo ./seafile.sh stop
|
|
sudo ./seahub.sh 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 -f /etc/init/seafile-server.conf
|
|
|
|
ccnet_port=$(sudo yunohost app setting seafile ccnet_port)
|
|
seafile_port=$(sudo yunohost app setting seafile seafile_port)
|
|
seahub_port=$(sudo yunohost app setting seafile seahub_port)
|
|
|
|
sudo yunohost firewall disallow $ccnet_port
|
|
sudo yunohost firewall disallow $seafile_port
|
|
sudo yunohost firewall disallow $seahub_port
|