1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ttrss_ynh.git synced 2024-10-01 13:34:46 +02:00
ttrss_ynh/scripts/remove

108 lines
3.6 KiB
Text
Raw Normal View History

2013-11-24 20:51:24 +01:00
#!/bin/bash
2017-08-27 14:42:28 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2020-08-14 23:29:59 +02:00
source _common.sh
2017-08-27 14:42:28 +02:00
source /usr/share/yunohost/helpers
2013-11-24 20:51:24 +01:00
2017-08-27 14:42:28 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2019-05-01 20:35:48 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=3
2016-05-24 22:37:39 +02:00
2017-08-27 14:42:28 +02:00
app=$YNH_APP_INSTANCE_NAME
2019-05-01 20:35:48 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2021-05-18 09:26:51 +02:00
db_user=$db_name
2019-05-01 20:35:48 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2017-08-27 14:42:28 +02:00
#=================================================
# STANDARD REMOVE
#=================================================
2021-05-18 09:26:51 +02:00
# REMOVE SERVICE INTEGRATION IN YUNOHOST
2017-08-27 14:42:28 +02:00
#=================================================
2021-05-18 09:26:51 +02: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-05-01 20:35:48 +02:00
then
2021-05-18 09:26:51 +02:00
ynh_script_progression --message="Removing $app service integration..."
2019-05-01 20:35:48 +02:00
yunohost service remove $app
fi
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=2
# Remove the dedicated systemd config
ynh_remove_systemd_config
2017-08-27 14:42:28 +02:00
#=================================================
# REMOVE THE MYSQL DATABASE
#=================================================
2019-05-01 20:35:48 +02:00
ynh_script_progression --message="Removing the MySQL database..." --weight=4
2017-08-27 14:42:28 +02:00
# Remove a database if it exists, along with the associated user
2021-05-18 09:26:51 +02:00
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
2019-05-01 20:35:48 +02:00
2017-08-27 14:42:28 +02:00
#=================================================
# REMOVE APP MAIN DIR
#=================================================
ynh_script_progression --message="Removing the app main directory..." --weight=4
2017-08-27 14:42:28 +02:00
# Remove the app directory securely
2019-05-01 20:35:48 +02:00
ynh_secure_remove --file="$final_path"
2017-08-27 14:42:28 +02:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2020-08-14 12:29:45 +02:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
2017-08-27 14:42:28 +02:00
2020-08-14 12:29:45 +02:00
# Remove the dedicated NGINX config
2017-08-27 14:42:28 +02:00
ynh_remove_nginx_config
#=================================================
# REMOVE PHP-FPM CONFIGURATION
#=================================================
2020-08-14 12:48:18 +02:00
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=3
2017-08-27 14:42:28 +02:00
2020-08-14 12:48:18 +02:00
# Remove the dedicated PHP-FPM config
2017-08-27 14:42:28 +02:00
ynh_remove_fpm_config
#=================================================
# REMOVE DEPENDENCIES
#=================================================
ynh_script_progression --message="Removing dependencies..." --weight=1
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2022-05-04 10:21:59 +02:00
#=================================================
2022-05-04 07:35:14 +02:00
# REMOVE VARIOUS FILES
#=================================================
ynh_script_progression --message="Removing various files..." --weight=1
# Remove a cron file
ynh_secure_remove --file="/etc/cron.d/$app"
2017-08-27 14:42:28 +02:00
#=================================================
2019-05-01 20:35:48 +02:00
# GENERIC FINALIZATION
#=================================================
2019-05-01 20:35:48 +02:00
# REMOVE DEDICATED USER
#=================================================
2020-06-18 20:57:12 +02:00
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
2019-05-01 20:35:48 +02:00
# Delete a system user
ynh_system_user_delete --username=$app
2017-08-27 14:42:28 +02:00
#=================================================
2019-05-01 20:35:48 +02:00
# END OF SCRIPT
2017-08-27 14:42:28 +02:00
#=================================================
2019-05-01 20:35:48 +02:00
ynh_script_progression --message="Removal of $app completed" --last