1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/meilisearch_ynh.git synced 2024-09-03 19:45:59 +02:00
meilisearch_ynh/scripts/remove

102 lines
3.3 KiB
Text
Raw Normal View History

2020-05-15 20:07:10 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2020-10-05 20:58:38 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2020-05-15 20:07:10 +02:00
app=$YNH_APP_INSTANCE_NAME
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)
#=================================================
# STANDARD REMOVE
#=================================================
# 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
2020-10-05 20:58:38 +02:00
ynh_script_progression --message="Removing Meilisearch service..." --weight=1
2020-05-15 20:07:10 +02:00
yunohost service remove $app
fi
#=================================================
# STOP AND REMOVE SERVICE
#=================================================
2020-10-05 20:58:38 +02:00
ynh_script_progression --message="Stopping and removing the systemd service..." --weight=2
2020-05-15 20:07:10 +02:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
#=================================================
2020-05-16 12:16:06 +02:00
# REMOVE SERVICE INTEGRATION IN YUNOHOST
2020-05-15 20:07:10 +02:00
#=================================================
2020-10-05 20:58:38 +02:00
ynh_script_progression --message="Removing Meilisearch binary" --weight=1
2020-05-16 12:16:06 +02:00
ynh_secure_remove --file=/usr/bin/meilisearch
2020-05-16 14:03:24 +02:00
ynh_secure_remove --file=$final_path
2020-05-15 20:07:10 +02:00
#=================================================
2020-05-16 12:16:06 +02:00
# REMOVE NGINX CONFIGURATION
2020-05-15 20:07:10 +02:00
#=================================================
2020-10-05 20:58:38 +02:00
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=3
2020-05-15 20:07:10 +02:00
2020-10-05 20:58:38 +02:00
# Remove the dedicated NGINX config
2020-05-16 12:16:06 +02:00
ynh_remove_nginx_config
2020-05-15 20:07:10 +02:00
#=================================================
# REMOVE LOGROTATE CONFIGURATION
#=================================================
2020-10-05 20:58:38 +02:00
ynh_script_progression --message="Removing logrotate configuration..." --weight=2
2020-05-15 20:07:10 +02:00
# Remove the app-specific logrotate config
ynh_remove_logrotate
#=================================================
# CLOSE A PORT
#=================================================
if yunohost firewall list | grep -q "\- $port$"
then
ynh_script_progression --message="Closing port $port..."
ynh_exec_warn_less yunohost firewall disallow TCP $port
fi
#=================================================
# REMOVE FAIL2BAN CONFIGURATION
#=================================================
2020-05-16 19:20:53 +02:00
#ynh_script_progression --message="Removing fail2ban configuration..." --time --weight=1
2020-05-15 20:07:10 +02:00
# Remove the dedicated fail2ban config
2020-05-16 19:20:53 +02:00
#ynh_remove_fail2ban_config
2020-05-15 20:07:10 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
2020-10-05 20:58:38 +02:00
ynh_script_progression --message="Removing the dedicated system user..." --weight=1
2020-05-15 20:07:10 +02:00
# Delete a system user
ynh_system_user_delete --username=$app
#=================================================
# END OF SCRIPT
#=================================================
2020-10-05 20:58:38 +02:00
ynh_script_progression --message="Removal of Meilisearch completed" --last