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
|
|
|
|
#=================================================
|
2019-11-02 21:19:47 +01:00
|
|
|
|
2022-08-31 00:06:07 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|