1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/forgejo_ynh.git synced 2024-09-03 18:36:26 +02:00
forgejo_ynh/scripts/remove

84 lines
2.6 KiB
Text
Raw Normal View History

2023-01-05 14:48:22 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2023-01-05 14:48:22 +01:00
source /usr/share/yunohost/helpers
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE SERVICE INTEGRATION IN YUNOHOST
#=================================================
2023-01-05 14:48:22 +01:00
# 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
yunohost service remove $app
fi
2023-01-05 14:48:22 +01:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
2023-01-05 14:48:22 +01:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
#=================================================
# REMOVE THE DATABASE
#=================================================
ynh_script_progression --message="Removing the database..." --weight=2
2023-01-05 14:48:22 +01:00
# Remove a database if it exists, along with the associated user
2023-03-10 17:22:52 +01:00
ynh_psql_remove_db --db_user=$db_user --db_name=$db_name
2023-01-05 14:48:22 +01:00
#=================================================
# REMOVE DEPENDENCIES
#=================================================
2023-03-10 17:22:52 +01:00
ynh_script_progression --message="Removing dependencies..." --weight=1
# Remove metapackage and its dependencies
2023-03-10 17:22:52 +01:00
ynh_remove_app_dependencies
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2023-03-10 17:22:52 +01:00
ynh_script_progression --message="Removing app main directory..." --weight=3
2023-01-05 14:48:22 +01:00
# Remove the app directory securely
2023-03-10 17:22:52 +01:00
ynh_secure_remove --file="$install_dir"
2023-01-05 14:48:22 +01:00
#=================================================
# REMOVE DATA DIR
#=================================================
2023-03-12 19:09:14 +01:00
# Remove the app data directory with the command `yunohost app remove forgejo --purge`
if [ "${YNH_APP_PURGE:-0}" -eq 1 ]
then
ynh_script_progression --message="Removing app data directory..." --weight=2
2023-03-10 17:22:52 +01:00
ynh_secure_remove --file="$data_dir"
fi
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
# Remove the dedicated NGINX config
ynh_remove_nginx_config
# Remove the dedicated Fail2Ban config
2023-01-05 14:48:22 +01:00
ynh_remove_fail2ban_config
ynh_secure_remove --file="/var/log/$app"
#=================================================
# END OF SCRIPT
#=================================================
2023-01-05 14:48:22 +01:00
ynh_script_progression --message="Removal of $app completed" --last