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

14 lines
254 B
Text
Raw Normal View History

2017-01-28 22:50:08 +01:00
#!/bin/bash
app=$YNH_APP_INSTANCE_NAME
2017-01-29 16:26:25 +01:00
set -u
2017-01-29 16:25:11 +01:00
# Source app helpers
source /usr/share/yunohost/helpers
2017-01-29 16:24:49 +01:00
domain=$(sudo ynh_app_setting_set $app domain)
2017-01-28 22:50:08 +01:00
sudo rm -rf /var/www/$app
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
sudo service nginx reload