1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/openproject_ynh.git synced 2024-09-03 19:56:10 +02:00
openproject_ynh/scripts/remove

96 lines
3.1 KiB
Text
Raw Normal View History

2019-10-01 14:40:53 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2022-02-27 23:22:06 +01:00
ynh_script_progression --message="Loading installation settings..."
2019-10-01 14:40:53 +02:00
app=$YNH_APP_INSTANCE_NAME
2022-02-27 23:22:06 +01:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2019-10-01 14:40:53 +02:00
db_user=$db_name
2022-02-27 23:22:06 +01:00
_homedir=$(ynh_app_setting_get --app=$app --key=_homedir)
2019-10-01 14:40:53 +02:00
#=================================================
# STANDARD REMOVE
#=================================================
2022-02-27 23:22:06 +01:00
# REMOVE SERVICE INTEGRATION IN YUNOHOST
2019-10-01 14:40:53 +02:00
#=================================================
2022-02-27 23:22:06 +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
2019-10-01 14:40:53 +02:00
then
2022-02-27 23:22:06 +01:00
ynh_script_progression --message="Removing $app service integration..."
yunohost service remove $app
2019-10-01 14:40:53 +02:00
fi
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2022-02-27 23:22:06 +01:00
ynh_script_progression --message="Stopping and removing the systemd service..."
2019-10-01 14:40:53 +02:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
#=================================================
# REMOVE THE POSTGRESQL DATABASE
#=================================================
2022-02-27 23:22:06 +01:00
ynh_script_progression --message="Removing the PostgreSQL database..."
2019-10-01 14:40:53 +02:00
# Remove a database if it exists, along with the associated user
2022-02-27 23:22:06 +01:00
ynh_psql_remove_db --db_user=$db_user --db_name=$db_name
2019-10-01 14:40:53 +02:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2022-02-27 23:22:06 +01:00
ynh_script_progression --message="Removing NGINX web server configuration..."
2019-10-01 14:40:53 +02:00
2022-02-27 23:22:06 +01:00
# Remove the dedicated NGINX config
2019-10-01 14:40:53 +02:00
ynh_remove_nginx_config
#=================================================
2022-02-27 23:22:06 +01:00
# REMOVE DEPENDENCIES
2019-10-01 14:40:53 +02:00
#=================================================
2022-02-27 23:22:06 +01:00
ynh_script_progression --message="Removing dependencies..."
2019-10-01 14:40:53 +02:00
2022-02-27 23:22:06 +01:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2019-10-01 14:40:53 +02:00
#=================================================
2022-02-27 23:22:06 +01:00
# SPECIFIC REMOVE
#=================================================
# REMOVE VARIOUS FILES
2019-10-01 14:40:53 +02:00
#=================================================
2022-02-27 23:22:06 +01:00
ynh_script_progression --message="Removing various files..."
ynh_secure_remove --file="$_homedir"
2019-10-01 14:40:53 +02:00
2022-02-27 23:22:06 +01:00
# Remove a directory securely
ynh_secure_remove --file="/etc/$app"
2019-10-01 14:40:53 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2022-02-27 23:22:06 +01:00
ynh_script_progression --message="Removing the dedicated system user..."
2019-10-01 14:40:53 +02:00
# Delete a system user
2022-02-27 23:22:06 +01:00
ynh_system_user_delete --username=$app
2019-10-01 14:40:53 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-02-27 23:22:06 +01:00
ynh_script_progression --message="Removal of $app completed"