1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/trustyhash_ynh.git synced 2024-09-04 01:15:56 +02:00
trustyhash_ynh/scripts/remove

28 lines
785 B
Text
Raw Normal View History

2022-05-05 17:51:33 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# REMOVE PHP-FPM CONFIGURATION
#=================================================
2023-01-11 15:55:23 +01:00
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=1
2022-05-05 17:51:33 +02:00
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config
2023-01-11 15:55:23 +01:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
2022-05-05 17:51:33 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2023-01-11 15:55:23 +01:00
ynh_script_progression --message="Removal of $app completed" --last