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

11 lines
249 B
Text
Raw Normal View History

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