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

93 lines
3 KiB
Text
Raw Normal View History

2018-11-21 16:11:09 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2020-05-21 12:49:24 +02:00
source _common.sh
2018-11-21 16:11:09 +01:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2020-05-21 12:49:24 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2018-11-21 16:11:09 +01:00
app=$YNH_APP_INSTANCE_NAME
2020-05-21 12:49:24 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
port=$(ynh_app_setting_get --app=$app --key=port)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$(ynh_app_setting_get --app=$app --key=db_user)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2018-11-21 16:11:09 +01:00
#=================================================
# STANDARD REMOVE
2019-03-13 16:44:42 +01:00
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2020-05-21 12:49:24 +02:00
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=1
2018-11-21 16:11:09 +01:00
2019-03-13 16:44:42 +01:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
2018-11-21 16:11:09 +01:00
2019-03-13 16:47:06 +01:00
#=================================================
2020-05-22 09:10:20 +02:00
# REMOVE THE DATABASE
2019-03-13 16:47:06 +01:00
#=================================================
2020-05-22 09:10:20 +02:00
ynh_script_progression --message="Removing the database..." --weight=2
2019-03-13 16:47:06 +01:00
# Remove a database if it exists, along with the associated user
2020-05-22 09:10:20 +02:00
ynh_psql_remove_db --db_user=$db_user --db_name=$db_name
2019-03-13 16:47:06 +01:00
2018-11-21 16:11:09 +01:00
#=================================================
# REMOVE DEPENDENCIES
#=================================================
2020-05-21 12:49:24 +02:00
ynh_script_progression --message="Removing dependencies..." --weight=1
2018-11-21 16:11:09 +01:00
# Remove metapackage and its dependencies
2019-03-13 16:47:06 +01:00
ynh_remove_app_dependencies
2018-11-21 16:11:09 +01:00
2020-05-21 12:49:24 +02:00
ynh_remove_nodejs
2018-11-21 16:11:09 +01:00
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2020-05-21 12:49:24 +02:00
ynh_script_progression --message="Removing app main directory..." --weight=6
2018-11-21 16:11:09 +01:00
# Remove the app directory securely
2020-05-21 12:49:24 +02:00
ynh_secure_remove --file="$final_path"
2018-11-21 16:11:09 +01:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2020-05-21 12:49:24 +02:00
ynh_script_progression --message="Removing Nginx web server configuration..." --weight=5
2018-11-21 16:11:09 +01:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
2020-05-21 12:49:24 +02:00
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
ynh_script_progression --message="Removing logrotate configuration..." --weight=1
# Remove the app-specific logrotate config
ynh_remove_logrotate
2018-11-21 16:11:09 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2020-05-21 12:49:24 +02:00
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
2018-11-21 16:11:09 +01:00
# Delete a system user
2020-05-21 12:49:24 +02:00
ynh_system_user_delete --username=$app
2019-03-13 16:44:42 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-05-21 12:49:24 +02:00
ynh_script_progression --message="Removal of $app completed" --last