1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/linuxdash_ynh.git synced 2024-09-03 19:36:07 +02:00
linuxdash_ynh/scripts/remove

16 lines
344 B
Text
Raw Normal View History

2014-06-02 13:38:03 +02:00
#!/bin/bash
app=linuxdash
2014-06-02 13:38:03 +02:00
domain=$(sudo yunohost app setting linuxdash domain)
2016-02-03 12:59:58 +01:00
# Remove sources and nginx configuration
sudo rm -rf /var/www/$app
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
# Remove service
sudo supervisorctl stop $app
sudo rm -f /etc/supervisor/conf.d/$app.conf
2016-02-03 12:59:58 +01:00
# Reload nginx configuration
sudo service nginx reload