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

33 lines
923 B
Text
Raw Normal View History

2018-02-06 14:33:23 +01:00
#!/bin/bash
2018-02-11 00:32:26 +01:00
#=================================================
# GENERIC START
#=================================================
2022-03-09 00:27:32 +01:00
# IMPORT GENERIC HELPERS
#=================================================
2018-02-11 00:32:26 +01:00
2022-03-09 00:27:32 +01:00
source _common.sh
2018-02-06 14:33:23 +01:00
source /usr/share/yunohost/helpers
2018-02-11 00:32:26 +01:00
#=================================================
# STANDARD REMOVE
#=================================================
2022-03-09 00:27:32 +01:00
# REMOVE LOGROTATE CONFIGURATION
#=================================================
2022-08-31 00:06:07 +02:00
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
2018-02-11 00:32:26 +01:00
2022-03-09 00:27:32 +01:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
# Remove the dedicated NGINX config
2018-02-06 14:33:23 +01:00
ynh_remove_nginx_config
2022-03-09 00:27:32 +01:00
# Remove the dedicated PHP-FPM config
2018-02-06 14:33:23 +01:00
ynh_remove_fpm_config
2022-03-09 00:27:32 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2022-08-31 00:06:07 +02:00
ynh_script_progression --message="Removal of $app completed" --last