1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/duniter_ynh.git synced 2024-09-03 18:26:35 +02:00
duniter_ynh/scripts/remove

24 lines
468 B
Text
Raw Normal View History

2015-05-24 23:01:16 +02:00
#!/bin/bash
#set -e
2015-05-24 23:01:16 +02:00
app=duniter
domain=$(sudo yunohost app setting $app domain)
port=$(sudo yunohost app setting $app port)
# Remove Duniter
source ~/.bashrc
$app stop
#rm -Rf $DUNITER_DIR
#rm -Rf /home/admin/.config/$app/
# Remove Duniter service to YunoHost monitoring
sudo yunohost service remove $app
# Remove proxy_pass
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
sudo service nginx reload
2015-05-24 23:01:16 +02:00
# Close opened port
sudo yunohost firewall disallow TCP $port