2021-03-07 19:51:22 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
|
|
|
#=================================================
|
2024-08-30 22:46:01 +02:00
|
|
|
ynh_script_progression "Removing system configurations related to $app..."
|
2021-03-07 19:51:22 +01:00
|
|
|
|
2022-02-04 01:28:16 +01:00
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
2024-08-30 22:46:01 +02:00
|
|
|
if ynh_hide_warnings yunohost service status $app >/dev/null
|
2021-03-07 19:51:22 +01:00
|
|
|
then
|
2024-08-30 22:46:01 +02:00
|
|
|
ynh_script_progression "Removing $app service integration..."
|
2021-03-07 19:51:22 +01:00
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
|
|
|
|
2022-02-04 01:28:16 +01:00
|
|
|
# Remove the app-specific logrotate config
|
2024-08-30 22:46:01 +02:00
|
|
|
ynh_config_remove_logrotate
|
2021-03-07 19:51:22 +01:00
|
|
|
|
|
|
|
# Remove the dedicated NGINX config
|
2024-08-30 22:46:01 +02:00
|
|
|
ynh_config_remove_nginx
|
2021-03-07 19:51:22 +01:00
|
|
|
|
|
|
|
# Remove the dedicated Fail2Ban config
|
2024-08-30 22:46:01 +02:00
|
|
|
ynh_config_remove_fail2ban
|
2021-03-07 19:51:22 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-30 22:46:01 +02:00
|
|
|
ynh_script_progression "Removal of $app completed"
|