2022-01-08 10:04:57 +01:00
|
|
|
#!/bin/bash
|
|
|
|
# to test the functionnality :
|
|
|
|
# yunohost app remove homeassistant --purge
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2023-02-15 12:31:34 +01:00
|
|
|
# REMOVE SYSTEM CONFIGURATIONS
|
2022-01-08 10:04:57 +01:00
|
|
|
#=================================================
|
|
|
|
|
2023-02-15 12:31:34 +01:00
|
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
|
|
|
|
2022-01-08 10:04:57 +01:00
|
|
|
if ynh_exec_warn_less yunohost service status $app >/dev/null ; then
|
|
|
|
yunohost service remove $app
|
|
|
|
fi
|
|
|
|
|
2023-02-15 12:31:34 +01:00
|
|
|
ynh_remove_systemd_config
|
2022-01-08 10:04:57 +01:00
|
|
|
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2023-02-15 12:31:34 +01:00
|
|
|
ynh_remove_logrotate
|
2023-01-31 11:14:50 +01:00
|
|
|
|
|
|
|
ynh_remove_fail2ban_config
|
|
|
|
|
2022-01-08 10:04:57 +01:00
|
|
|
ynh_secure_remove --file="/etc/sudoers.d/$app"
|
2023-02-15 12:31:34 +01:00
|
|
|
|
2022-01-08 10:04:57 +01:00
|
|
|
ynh_secure_remove --file="$(dirname "$log_file")"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|