scratch_ynh/scripts/remove

54 lines
1.8 KiB
Text
Raw Normal View History

2018-11-29 11:55:24 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2023-07-20 23:20:17 +02:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..." --weight=1
2018-11-29 11:55:24 +01:00
2023-07-20 23:20:17 +02:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2018-11-29 11:55:24 +01:00
2023-07-20 23:20:17 +02:00
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
#REMOVEME? port=$(ynh_app_setting_get --app=$app --key=port)
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
2018-11-29 11:55:24 +01:00
#=================================================
2021-06-27 15:07:50 +02:00
# REMOVE APP MAIN DIR
2018-11-29 11:55:24 +01:00
#=================================================
2023-07-20 23:20:17 +02:00
#REMOVEME? ynh_script_progression --message="Removing app main directory..." --weight=1
2018-11-29 11:55:24 +01:00
2021-06-27 15:07:50 +02:00
# Remove the app directory securely
2023-07-20 23:20:17 +02:00
#REMOVEME? ynh_secure_remove --file="$install_dir"
2018-11-29 11:55:24 +01:00
#=================================================
2021-06-27 15:07:50 +02:00
# REMOVE NGINX CONFIGURATION
2018-11-29 11:55:24 +01:00
#=================================================
2021-06-27 15:43:18 +02:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=1
2018-11-29 11:55:24 +01:00
2021-06-27 15:07:50 +02:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
2018-11-29 11:55:24 +01:00
#=================================================
2021-06-27 15:07:50 +02:00
# GENERIC FINALIZATION
2018-11-29 11:55:24 +01:00
#=================================================
2021-06-27 15:07:50 +02:00
# REMOVE DEDICATED USER
2018-11-29 11:55:24 +01:00
#=================================================
2023-07-20 23:20:17 +02:00
#REMOVEME? ynh_script_progression --message="Removing the dedicated system user..." --weight=1
2018-11-29 11:55:24 +01:00
2021-06-27 15:07:50 +02:00
# Delete a system user
2023-07-20 23:20:17 +02:00
#REMOVEME? ynh_system_user_delete --username=$app
2018-11-29 11:55:24 +01:00
#=================================================
2021-06-27 15:07:50 +02:00
# END OF SCRIPT
2018-11-29 11:55:24 +01:00
#=================================================
2021-06-27 15:43:18 +02:00
ynh_script_progression --message="Removal of $app completed" --last