mirror of
https://github.com/YunoHost-Apps/radicale_ynh.git
synced 2024-09-03 20:16:14 +02:00
12 lines
345 B
Bash
12 lines
345 B
Bash
#!/bin/bash
|
|
|
|
domain=$(sudo yunohost app setting radicale domain)
|
|
|
|
sudo rm -Rf /usr/local/radicale
|
|
sudo rm -Rf /var/www/radicale/
|
|
sudo rm -f /etc/uwsgi/apps-enabled/radicle.ini
|
|
sudo rm -f /etc/uwsgi/apps-available/radicale.ini
|
|
sudo rm -f /etc/nginx/conf.d/$domain.d/radicale.conf
|
|
service uwsgi reload
|
|
service nginx reload
|
|
yunohost app ssowatconf
|