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

94 lines
3.1 KiB
Text
Raw Normal View History

2013-12-12 12:12:22 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
2020-04-16 23:33:43 +02:00
# IMPORT GENERIC HELPERS
#=================================================
source ./_common.sh
2020-04-16 23:33:43 +02:00
source /usr/share/yunohost/helpers
2020-04-16 23:33:43 +02:00
#=================================================
# LOAD SETTINGS
2020-04-16 23:33:43 +02: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)
#=================================================
# 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
#=================================================
ynh_script_progression --message="Removing configuration..."
2020-04-16 23:33:43 +02:00
# Remove init script
ynh_script_progression --message="Removing systemd units..."
ynh_remove_systemd_config
yunohost service remove "$app"
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
#=================================================
# REMOVE DEPENDENCIES
2020-04-16 23:33:43 +02:00
#=================================================
ynh_script_progression --message="Removing dependencies" --weight=10
2020-04-16 23:33:43 +02:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2020-04-16 23:33:43 +02: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
ynh_secure_remove --file="$final_path"
2020-04-16 23:33:43 +02: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
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..."
# Delete a system user
2020-04-16 23:33:43 +02:00
ynh_system_user_delete --username=$app
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last