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

28 lines
801 B
Text
Raw Normal View History

#!/bin/bash
2018-03-13 21:49:11 +01:00
#=================================================
2022-06-15 23:45:27 +02:00
# GENERIC START
2018-03-13 21:49:11 +01:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-02-02 03:37:01 +01:00
source _common.sh
2021-07-12 13:54:37 +02:00
source /usr/share/yunohost/helpers
2018-03-13 21:49:11 +01:00
#=================================================
2024-01-23 16:40:33 +01:00
# REMOVE SYSTEM CONFIGURATIONS
2018-03-13 21:49:11 +01:00
#=================================================
2024-01-23 16:40:33 +01:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2017-02-02 03:37:01 +01:00
2021-07-12 12:11:43 +02:00
# Remove the dedicated NGINX config
2018-03-13 21:49:11 +01:00
ynh_remove_nginx_config
2021-07-12 12:11:43 +02:00
# Remove the dedicated PHP-FPM config
2018-03-13 21:49:11 +01:00
ynh_remove_fpm_config
2021-07-12 12:11:43 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last