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

74 lines
2.7 KiB
Text
Raw Normal View History

2024-02-21 16:50:15 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source /usr/share/yunohost/helpers
source _common.sh
2024-02-21 16:50:15 +01:00
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE SERVICE INTEGRATION IN YUNOHOST
#=================================================
ynh_script_progression --message="Removing system configurations related to $app..." --weight=5
2024-04-16 13:09:41 +02:00
# Stop flohmarkt service
ynh_script_progression --message="Stopping $app..." --weight=2
yunohost service stop $flohmarkt_filename
2024-04-16 13:09:41 +02:00
2024-02-21 16:50:15 +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 $flohmarkt_filename >/dev/null; then
2024-02-21 16:50:15 +01:00
ynh_script_progression --message="Removing $app service integration..." --weight=2
ynh_remove_systemd_config --service=$flohmarkt_filename
yunohost service remove $flohmarkt_filename
2024-02-21 16:50:15 +01:00
fi
# remove DB user for this instance - a new install will create a new user and permissions
ynh_script_progression --message="Removing couchdb user..." --weight=2
2024-05-14 20:40:51 +02:00
flohmarkt_ynh_delete_couchdb_user
2024-04-17 15:21:52 +02:00
if [[ $YNH_APP_PURGE -eq 1 ]]; then
ynh_script_progression --message="Purging couchdb database ..." --weight=2
# remove DB
flohmarkt_ynh_delete_couchdb_db
# remove logfiles directory
ynh_script_progression --message="Purging logfiles..." --weight=2
ynh_secure_remove --file="${flohmarkt_log_dir}"
else
ynh_script_progression --message="Purge not selected - not deleting couchdb and logfiles..." --weight=1
fi
2024-02-21 16:50:15 +01:00
# Remove the app-specific logrotate config
2024-05-14 20:40:51 +02:00
ynh_script_progression --message="Removing logrotate configuration..." --weight=2
2024-02-21 16:50:15 +01:00
ynh_remove_logrotate
# Remove the dedicated NGINX config
2024-05-14 20:40:51 +02:00
ynh_script_progression --message="Removing nginx configuration..." --weight=2
2024-02-21 16:50:15 +01:00
ynh_remove_nginx_config
# Remove the dedicated Fail2Ban config
2024-05-14 20:40:51 +02:00
ynh_script_progression --message="Removing fail2ban configuration..." --weight=2
2024-02-21 16:50:15 +01:00
ynh_remove_fail2ban_config
2024-04-22 11:21:07 +02:00
# remove systemd service
ynh_script_progression --message="Removing systemd.service directory..." --weight=2
2024-04-22 11:21:07 +02:00
ynh_remove_systemd_config
# remove symlinks
ynh_script_progression --message="Removing symlinks..." --weight=2
2024-05-19 13:51:00 +02:00
# no ynh_secure_remove:
# https://codeberg.org/flohmarkt/flohmarkt_ynh/issues/52
2024-05-15 21:15:09 +02:00
rm "$flohmarkt_sym_install" || true
rm "$flohmarkt_sym_data_dir" || true
rm "$flohmarkt_sym_log_dir" || true
2024-02-21 16:50:15 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Removal of $app completed" --last