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

108 lines
3.4 KiB
Text
Raw Normal View History

2019-08-05 01:29:15 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-12-29 23:23:32 +01:00
ynh_print_info --message="Loading installation settings..."
2019-08-05 01:29:15 +02:00
app=$YNH_APP_INSTANCE_NAME
2019-12-29 23:23:32 +01:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2019-08-05 01:29:15 +02:00
#=================================================
# STANDARD REMOVE
#=================================================
2019-12-29 23:23:32 +01:00
# REMOVE SERVICE INTEGRATION IN YUNOHOST
2019-08-05 01:29:15 +02:00
#=================================================
2019-12-29 23:23:32 +01:00
ynh_print_info --message="Removing service integration in YunoHost..."
2019-08-05 01:29:15 +02:00
2019-12-29 23:23:32 +01: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-08-05 01:29:15 +02:00
then
2019-12-29 23:23:32 +01:00
ynh_print_info --message="Removing $app service..."
yunohost service remove $app
2019-08-05 01:29:15 +02:00
fi
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2019-12-29 23:23:32 +01:00
ynh_print_info --message="Stopping and removing the systemd service..."
2019-08-05 01:29:15 +02:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
#=================================================
# REMOVE DEPENDENCIES
#=================================================
2019-12-29 23:23:32 +01:00
ynh_print_info --message="Removing dependencies..."
2019-08-05 01:29:15 +02:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2019-12-29 23:23:32 +01:00
ynh_print_info --message="Removing app main directory..."
2019-08-05 01:29:15 +02:00
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2019-12-29 23:23:32 +01:00
ynh_print_info --message="Removing nginx web server configuration..."
2019-08-05 01:29:15 +02:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
2019-12-29 23:23:32 +01:00
ynh_print_info --message="Removing logrotate configuration..."
2019-08-05 01:29:15 +02:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
#=================================================
# REMOVE FAIL2BAN CONFIGURATION
#=================================================
2019-12-29 23:23:32 +01:00
ynh_print_info --message="Removing fail2ban configuration..."
2019-08-05 01:29:15 +02:00
# Remove the dedicated fail2ban config
ynh_remove_fail2ban_config
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE THE LOG FILE
#=================================================
# Remove the log files
ynh_secure_remove --file="/var/log/$app/"
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2019-12-29 23:23:32 +01:00
ynh_print_info --message="Removing the dedicated system user..."
2019-08-05 01:29:15 +02:00
# Delete a system user
2019-12-29 23:23:32 +01:00
ynh_system_user_delete --username=$app
2019-08-05 01:29:15 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2019-12-29 23:23:32 +01:00
ynh_print_info --message="Removal of $app completed"