1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/privatebin_ynh.git synced 2024-09-03 20:15:56 +02:00
privatebin_ynh/scripts/remove

19 lines
401 B
Text
Raw Normal View History

2013-12-24 13:37:55 +01:00
#!/bin/bash
# Exit on command errors and treat unset variables as an error
set -u
# Source app helpers
source /usr/share/yunohost/helpers
2017-04-16 22:17:13 +02:00
source ./_common
# Get multi-instances specific variables
2016-08-24 19:51:23 +02:00
app=$YNH_APP_INSTANCE_NAME
2013-12-24 13:37:55 +01:00
# Retrieve arguments
domain=$(ynh_app_setting_get "$app" domain)
2016-08-24 19:51:23 +02:00
2017-04-16 22:17:13 +02:00
ynh_secure_rm /var/www/$app
ynh_secure_rm /etc/nginx/conf.d/$domain.d/$app.conf
2016-11-21 16:03:27 +01:00
sudo systemctl reload nginx