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

39 lines
1.2 KiB
Text
Raw Normal View History

2016-06-20 23:43:51 +02:00
#!/bin/bash
2018-05-26 10:27:01 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2023-09-26 21:24:14 +02:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..." --weight=1
2016-06-20 23:43:51 +02:00
# Retrieve arguments
2023-09-26 21:24:14 +02:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
2021-01-23 15:21:17 +01:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2016-06-20 23:43:51 +02:00
# Remove configuration files
ynh_secure_remove /etc/nginx/conf.d/$domain.d/$app.conf
2016-06-20 23:43:51 +02:00
2021-01-23 15:21:17 +01:00
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
2023-09-26 21:24:14 +02:00
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-01-23 15:21:17 +01:00
2023-09-26 21:24:14 +02:00
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload
2021-01-23 15:21:17 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last