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

113 lines
3.6 KiB
Text
Raw Normal View History

2019-01-28 19:15:11 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2020-08-08 20:21:09 +02:00
ynh_script_progression --message="Loading installation settings..."
2019-01-28 19:15:11 +01:00
app=$YNH_APP_INSTANCE_NAME
2019-04-24 03:11:53 +02: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)
2022-01-05 03:58:46 +01:00
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
2019-01-28 19:15:11 +01:00
#=================================================
# STANDARD REMOVE
#=================================================
2019-12-29 17:43:56 +01:00
# REMOVE SERVICE INTEGRATION IN YUNOHOST
2019-01-28 19:15:11 +01:00
#=================================================
2021-03-23 20:16:47 +01:00
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
2019-12-29 17:43:56 +01:00
if ynh_exec_warn_less yunohost service status $app >/dev/null
2019-01-28 19:15:11 +01:00
then
2020-08-08 20:21:09 +02:00
ynh_script_progression --message="Removing $app service integration..."
2019-01-28 19:15:11 +01:00
yunohost service remove $app
fi
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2020-08-08 20:21:09 +02:00
ynh_script_progression --message="Stopping and removing the systemd service..."
2019-01-28 19:15:11 +01:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
#=================================================
2022-01-05 03:58:46 +01:00
# REMOVE LOGROTATE CONFIGURATION
2019-01-28 19:15:11 +01:00
#=================================================
2022-01-05 03:58:46 +01:00
ynh_script_progression --message="Removing logrotate configuration..."
2019-01-28 19:15:11 +01:00
2022-01-05 03:58:46 +01:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
2019-01-28 19:15:11 +01:00
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2020-08-08 20:21:09 +02:00
ynh_script_progression --message="Removing app main directory..."
2019-01-28 19:15:11 +01:00
# Remove the app directory securely
2019-04-24 03:11:53 +02:00
ynh_secure_remove --file="$final_path"
2019-01-28 19:15:11 +01:00
2022-01-05 03:58:46 +01:00
#=================================================
# REMOVE DATA DIR
#=================================================
# Remove the data directory if --purge option is used
if [ "${YNH_APP_PURGE:-0}" -eq 1 ]
then
ynh_script_progression --message="Removing app data directory..."
ynh_secure_remove --file="$datadir"
fi
2019-01-28 19:15:11 +01:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2020-12-11 09:23:59 +01:00
ynh_script_progression --message="Removing NGINX web server configuration..."
2019-01-28 19:15:11 +01:00
2020-12-11 09:23:59 +01:00
# Remove the dedicated NGINX config
2019-01-28 19:15:11 +01:00
ynh_remove_nginx_config
#=================================================
2022-01-05 03:58:46 +01:00
# REMOVE DEPENDENCIES
2019-01-28 19:15:11 +01:00
#=================================================
2022-01-05 03:58:46 +01:00
ynh_script_progression --message="Removing dependencies..."
2019-01-28 19:15:11 +01:00
2022-01-05 03:58:46 +01:00
# Remove metapackage and its dependencies
ynh_remove_nodejs
ynh_remove_app_dependencies
2019-01-28 19:15:11 +01:00
#=================================================
# SPECIFIC REMOVE
#=================================================
2022-01-05 03:58:46 +01:00
# REMOVE VARIOUS FILES
2019-01-28 19:15:11 +01:00
#=================================================
# Remove the log files
2020-08-08 20:21:09 +02:00
ynh_secure_remove --file="/var/log/$app"
2019-01-28 19:15:11 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2020-08-08 20:21:09 +02:00
ynh_script_progression --message="Removing the dedicated system user..."
2019-01-28 19:15:11 +01:00
# Delete a system user
2019-04-24 03:11:53 +02:00
ynh_system_user_delete --username=$app
2019-02-11 04:34:08 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-08-08 20:21:09 +02:00
ynh_script_progression --message="Removal of $app completed"