2013-12-12 12:12:22 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-10-30 17:52:57 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
2020-04-16 23:33:43 +02:00
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-10-30 17:52:57 +01:00
|
|
|
|
2019-11-01 22:04:11 +01:00
|
|
|
source ./_common.sh
|
2020-04-16 23:33:43 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-10-30 17:52:57 +01:00
|
|
|
|
2020-04-16 23:33:43 +02:00
|
|
|
#=================================================
|
2019-11-01 22:04:11 +01:00
|
|
|
# LOAD SETTINGS
|
2020-04-16 23:33:43 +02:00
|
|
|
#=================================================
|
2019-11-01 22:04:11 +01:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2020-04-16 23:33:43 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
db_user=$db_name
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2017-10-30 17:52:57 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
2021-01-21 17:59:46 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2020-04-16 23:33:43 +02:00
|
|
|
#=================================================
|
|
|
|
# STOP AND REMOVE SERVICE
|
|
|
|
#=================================================
|
2019-11-01 22:04:11 +01:00
|
|
|
ynh_script_progression --message="Removing configuration..."
|
2020-04-16 23:33:43 +02:00
|
|
|
|
2022-06-19 18:25:06 +02:00
|
|
|
# Remove init script
|
|
|
|
ynh_script_progression --message="Removing systemd units..."
|
|
|
|
ynh_remove_systemd_config
|
|
|
|
yunohost service remove "$app"
|
2017-10-30 17:52:57 +01:00
|
|
|
|
2020-04-16 23:33:43 +02:00
|
|
|
#=================================================
|
|
|
|
# REMOVE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing the MySQL database..."
|
|
|
|
|
|
|
|
# Remove a database if it exists, along with the associated user
|
|
|
|
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
|
|
|
|
|
|
|
|
#=================================================
|
2017-10-30 17:52:57 +01:00
|
|
|
# REMOVE DEPENDENCIES
|
2020-04-16 23:33:43 +02:00
|
|
|
#=================================================
|
2019-11-01 22:04:11 +01:00
|
|
|
ynh_script_progression --message="Removing dependencies" --weight=10
|
2017-10-30 17:52:57 +01:00
|
|
|
|
2020-04-16 23:33:43 +02:00
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
2017-10-30 17:52:57 +01:00
|
|
|
|
2020-04-16 23:33:43 +02:00
|
|
|
#=================================================
|
2017-10-30 17:52:57 +01:00
|
|
|
# REMOVE APP MAIN DIR
|
2020-04-16 23:33:43 +02:00
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing app main directory..."
|
|
|
|
|
|
|
|
# Remove the app directory securely
|
2019-11-01 22:04:11 +01:00
|
|
|
ynh_secure_remove --file="$final_path"
|
2017-10-30 17:52:57 +01:00
|
|
|
|
2020-04-16 23:33:43 +02:00
|
|
|
#=================================================
|
2017-10-30 17:52:57 +01:00
|
|
|
# REMOVE NGINX CONFIGURATION
|
2020-04-16 23:33:43 +02:00
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing nginx web server configuration..."
|
|
|
|
|
|
|
|
# Remove the dedicated nginx config
|
2017-10-30 17:52:57 +01:00
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
2020-04-16 23:33:43 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing the dedicated system user..."
|
|
|
|
|
2017-10-30 17:52:57 +01:00
|
|
|
# Delete a system user
|
2020-04-16 23:33:43 +02:00
|
|
|
ynh_system_user_delete --username=$app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2019-11-01 22:04:11 +01:00
|
|
|
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|