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

28 lines
801 B
Text
Raw Normal View History

2015-04-06 17:46:57 +02:00
#!/bin/bash
2017-04-30 15:45:50 +02:00
2020-07-18 20:55:45 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-04-30 15:45:50 +02:00
2020-07-18 20:55:45 +02:00
source _common.sh
2017-04-30 15:45:50 +02:00
source /usr/share/yunohost/helpers
2020-07-18 20:55:45 +02:00
#=================================================
2024-01-17 11:37:40 +01:00
# REMOVE SYSTEM CONFIGURATIONS
2020-07-18 20:55:45 +02:00
#=================================================
2024-01-17 11:37:40 +01:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2020-07-18 20:55:45 +02:00
2020-09-25 16:21:33 +02:00
# Remove the dedicated PHP-FPM config
2017-04-30 15:45:50 +02:00
ynh_remove_fpm_config
2015-04-06 17:46:57 +02:00
2022-10-01 08:52:00 +02:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
2020-07-18 20:55:45 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2015-04-06 17:46:57 +02:00
2022-10-01 08:52:00 +02:00
ynh_script_progression --message="Removal of $app completed" --last