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

28 lines
801 B
Text
Raw Normal View History

2016-06-02 16:10:37 +02:00
#!/bin/bash
2018-08-05 02:02:55 +02:00
#=================================================
2022-03-31 19:39:38 +02:00
# GENERIC START
2018-08-05 02:02:55 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-06-02 16:10:37 +02:00
2022-03-31 19:39:38 +02:00
source _common.sh
2018-08-05 02:02:55 +02:00
source /usr/share/yunohost/helpers
2016-06-02 16:10:37 +02:00
2018-08-05 02:02:55 +02:00
#=================================================
2023-02-17 22:45:03 +01:00
# REMOVE SYSTEM CONFIGURATIONS
2018-08-05 02:02:55 +02:00
#=================================================
2023-02-17 22:45:03 +01:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2020-12-02 12:13:13 +01:00
2022-03-31 19:39:38 +02:00
# Remove the dedicated NGINX config
2021-05-26 12:16:06 +02:00
ynh_remove_nginx_config
2020-12-02 12:13:13 +01:00
2022-03-31 19:39:38 +02:00
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config
2020-07-08 09:49:14 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-04-04 20:12:41 +02:00
ynh_script_progression --message="Removal of $app completed" --last