2015-02-16 23:19:37 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-02-16 23:19:37 +01:00
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2015-02-16 23:19:37 +01:00
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
#=================================================
|
2023-08-21 10:05:52 +02:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2024-02-22 05:04:11 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
|
|
|
if ynh_exec_warn_less yunohost service status "$app" >/dev/null
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Removing $app service integration..." --weight=1
|
2024-08-23 18:05:13 +02:00
|
|
|
yunohost service remove "$app"
|
2024-02-22 05:04:11 +01:00
|
|
|
fi
|
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
#=================================================
|
2023-08-21 10:05:52 +02:00
|
|
|
# REMOVE SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
|
|
|
|
2017-07-18 12:21:08 +02:00
|
|
|
# Remove the dedicated nginx config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2021-07-19 08:38:46 +02:00
|
|
|
# Remove the dedicated PHP-FPM config
|
2018-06-05 23:17:03 +02:00
|
|
|
ynh_remove_fpm_config
|
|
|
|
|
2020-04-09 10:42:49 +02:00
|
|
|
# Remove the app-specific logrotate config
|
2023-08-21 12:34:53 +02:00
|
|
|
ynh_remove_logrotate
|
2023-08-21 10:13:29 +02:00
|
|
|
|
|
|
|
ynh_remove_fail2ban_config
|
2020-04-09 10:42:49 +02:00
|
|
|
|
2024-08-23 18:05:13 +02:00
|
|
|
ynh_remove_systemd_config
|
2023-08-21 12:34:53 +02:00
|
|
|
|
2019-03-12 11:37:22 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-07-19 08:54:40 +02:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|