1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jappix_ynh.git synced 2024-09-03 19:26:19 +02:00
jappix_ynh/scripts/remove
2020-11-22 23:36:37 +01:00

42 lines
1.2 KiB
Bash

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading installation settings..." --weight=1
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get "$app" domain)
#=================================================
# REMOVE APP MAIN DIR
#=================================================
# Remove sources and configuration
ynh_secure_remove --file="/var/www/$app"
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
ynh_secure_remove --file="/etc/nginx/conf.d/$domain.d/$app.conf"
# Reload services
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last