2016-09-09 11:07:28 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-04-14 22:02:50 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-09-27 23:14:15 +02:00
|
|
|
|
2018-04-14 22:02:50 +02:00
|
|
|
source _common.sh
|
2017-09-17 11:03:01 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-09-09 11:07:28 +02:00
|
|
|
|
2018-04-14 22:02:50 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2017-09-17 11:03:01 +02:00
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2018-04-14 22:02:50 +02:00
|
|
|
port=$(ynh_app_setting_get "$app" port)
|
|
|
|
final_path=$(ynh_app_setting_get "$app" final_path)
|
2020-04-11 14:18:16 +02:00
|
|
|
db_name="$app"
|
|
|
|
db_user="$app"
|
2018-04-14 22:02:50 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
|
|
|
#=================================================
|
|
|
|
# STOP AND REMOVE SERVICE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the dedicated systemd config
|
2020-05-03 14:03:03 +02:00
|
|
|
ynh_script_progression --message="Removing systemd configuration"
|
2018-04-14 22:02:50 +02:00
|
|
|
ynh_remove_systemd_config
|
|
|
|
|
2020-04-11 14:18:16 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE THE POSTGRESQL DATABASE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove a database if it exists, along with the associated user
|
2020-05-03 14:03:03 +02:00
|
|
|
ynh_script_progression --message="Removing associated database"
|
2020-04-11 14:18:16 +02:00
|
|
|
ynh_psql_remove_db --db_user="$db_user" --db_name="$db_name"
|
|
|
|
|
2018-04-14 22:02:50 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
2020-05-03 14:03:03 +02:00
|
|
|
ynh_script_progression --message="Removing dependencies"
|
2018-04-14 22:02:50 +02:00
|
|
|
ynh_remove_app_dependencies
|
|
|
|
ynh_remove_nodejs
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove the app directory securely
|
2020-04-11 14:18:16 +02:00
|
|
|
ynh_secure_remove --file="$final_path"
|
2018-04-14 22:02:50 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2016-09-09 11:07:28 +02:00
|
|
|
|
2018-04-14 22:02:50 +02:00
|
|
|
# Remove the dedicated nginx config
|
2020-05-03 14:03:03 +02:00
|
|
|
ynh_script_progression --message="Removing nginx configuration"
|
2018-04-14 22:02:50 +02:00
|
|
|
ynh_remove_nginx_config
|
2016-09-09 11:07:28 +02:00
|
|
|
|
2018-04-14 22:02:50 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2017-09-17 11:09:49 +02:00
|
|
|
|
2018-04-14 22:02:50 +02:00
|
|
|
# Delete a system user
|
2020-05-03 14:03:03 +02:00
|
|
|
ynh_script_progression --message="Deleting system user"
|
2018-04-14 22:02:50 +02:00
|
|
|
ynh_system_user_delete "$app"
|
2020-05-03 14:03:03 +02:00
|
|
|
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|