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

82 lines
2.5 KiB
Text
Raw Normal View History

2016-09-09 11:07:28 +02:00
#!/bin/bash
2018-04-14 22:02:50 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
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
2020-12-13 21:40:17 +01:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
port=$(ynh_app_setting_get --app=$app --key=port)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
2018-04-14 22:02:50 +02:00
#=================================================
# STANDARD REMOVE
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2020-12-13 21:40:17 +01:00
ynh_script_progression --message="Removing systemd configuration"
2018-04-14 22:02:50 +02:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
2020-04-11 14:18:16 +02:00
#=================================================
# REMOVE THE POSTGRESQL DATABASE
#=================================================
2020-12-13 21:40:17 +01:00
ynh_script_progression --message="Removing associated database"
2020-04-11 14:18:16 +02:00
# Remove a database if it exists, along with the associated user
2020-12-13 21:40:17 +01:00
ynh_psql_remove_db --db_user=$db_user --db_name=$db_name
2020-04-11 14:18:16 +02:00
2018-04-14 22:02:50 +02:00
#=================================================
# REMOVE DEPENDENCIES
#=================================================
2020-12-13 21:40:17 +01:00
ynh_script_progression --message="Removing dependencies"
2018-04-14 22:02:50 +02:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2020-12-13 21:40:17 +01:00
2018-04-14 22:02:50 +02:00
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
#=================================================
2020-12-13 21:40:17 +01:00
ynh_script_progression --message="Removing NGINX configuration"
2016-09-09 11:07:28 +02:00
2018-04-14 22:02:50 +02:00
# Remove the dedicated nginx config
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
#=================================================
2020-12-13 21:40:17 +01:00
ynh_script_progression --message="Removing the dedicated system user..."
2018-04-14 22:02:50 +02:00
# Delete a system user
2020-12-13 21:40:17 +01:00
ynh_system_user_delete --username=$app
#=================================================
# END OF SCRIPT
#=================================================
2020-05-03 14:03:03 +02:00
ynh_script_progression --message="Removal of $app completed" --last