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

28 lines
801 B
Text
Raw Normal View History

2013-11-29 12:49:27 +01:00
#!/bin/bash
2014-05-29 12:09:07 +02:00
2020-10-20 23:45:55 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2017-03-08 23:32:42 +01:00
source /usr/share/yunohost/helpers
2020-10-20 23:45:55 +02:00
#=================================================
2024-01-07 13:10:56 +01:00
# REMOVE SYSTEM CONFIGURATIONS
2020-10-20 23:45:55 +02:00
#=================================================
2024-01-07 13:10:56 +01:00
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
2020-10-20 23:45:55 +02:00
2020-11-22 22:17:57 +01:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
2020-10-20 23:45:55 +02:00
2021-07-21 14:51:44 +02:00
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config
2020-10-20 23:45:55 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2020-11-22 22:17:57 +01:00
ynh_script_progression --message="Removal of $app completed" --last