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

31 lines
866 B
Text
Raw Normal View History

2015-10-17 10:47:21 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2015-10-17 10:47:21 +02:00
source _common.sh
source /usr/share/yunohost/helpers
2015-10-17 10:47:21 +02:00
2022-04-14 00:33:50 +02:00
#=================================================
2023-11-11 14:37:54 +01:00
# REMOVE SYSTEM CONFIGURATIONS
#=================================================
2023-11-11 14:37:54 +01:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2022-04-13 20:36:45 +02:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
2021-07-22 15:39:20 +02:00
2021-01-05 23:31:12 +01:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
2021-01-05 23:31:12 +01:00
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config
2021-01-05 23:31:12 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last