2021-03-19 04:09:26 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
|
2021-04-06 22:11:56 +02:00
|
|
|
ynh_script_progression --message="Removing $app service integration..." --weight=1
|
|
|
|
|
|
|
|
if ynh_exec_warn_less yunohost service status $app-guacd >/dev/null; then
|
2021-03-26 03:20:11 +01:00
|
|
|
yunohost service remove "$app-guacd"
|
2021-04-06 22:11:56 +02:00
|
|
|
fi
|
|
|
|
if ynh_exec_warn_less yunohost service status $app-tomcat >/dev/null; then
|
2021-03-26 03:20:11 +01:00
|
|
|
yunohost service remove "$app-tomcat"
|
2021-03-19 04:09:26 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STOP AND REMOVE SERVICE
|
|
|
|
#=================================================
|
2021-03-21 05:17:45 +01:00
|
|
|
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=1
|
2021-03-19 04:09:26 +01:00
|
|
|
|
|
|
|
# Remove the dedicated systemd config
|
2021-03-21 05:17:45 +01:00
|
|
|
ynh_remove_systemd_config --service="$app-guacd"
|
|
|
|
ynh_remove_systemd_config --service="$app-tomcat"
|
2021-03-19 04:09:26 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-03-21 05:17:45 +01:00
|
|
|
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
|
2021-03-19 04:09:26 +01:00
|
|
|
|
|
|
|
# Remove the dedicated NGINX config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
2021-03-21 05:17:45 +01:00
|
|
|
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
|
2021-03-19 04:09:26 +01:00
|
|
|
|
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE FAIL2BAN CONFIGURATION
|
|
|
|
#=================================================
|
2021-08-07 13:59:24 +02:00
|
|
|
ynh_script_progression --message="Removing Fail2Ban configuration..." --weight=1
|
2021-03-19 04:09:26 +01:00
|
|
|
|
|
|
|
# Remove the dedicated Fail2Ban config
|
|
|
|
ynh_remove_fail2ban_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE VARIOUS FILES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the log files
|
2021-08-07 13:59:24 +02:00
|
|
|
ynh_secure_remove --file="/var/log/$app"
|
2021-03-19 04:09:26 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
2021-03-21 05:17:45 +01:00
|
|
|
# REMOVE DEDICATED USERS
|
2021-03-19 04:09:26 +01:00
|
|
|
#=================================================
|
2023-05-29 17:23:44 +02:00
|
|
|
ynh_script_progression --message="Removing the dedicated system users..." --weight=1
|
2021-03-19 04:09:26 +01:00
|
|
|
|
|
|
|
# Delete a system user
|
2023-05-29 17:23:44 +02:00
|
|
|
ynh_system_user_delete --username="$app-guacd"
|
|
|
|
ynh_system_user_delete --username="$app-tomcat"
|
2021-03-19 04:09:26 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-03-21 05:17:45 +01:00
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|