2024-02-21 16:50:15 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
2024-05-06 07:47:13 +02:00
|
|
|
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`)
|
2024-05-06 07:47:13 +02:00
|
|
|
if ynh_exec_warn_less yunohost service status $flohmarkt_filename >/dev/null
|
2024-02-21 16:50:15 +01:00
|
|
|
then
|
|
|
|
ynh_script_progression --message="Removing $app service integration..." --weight=2
|
2024-05-06 07:47:13 +02:00
|
|
|
yunohost service remove $flohmarkt_filename
|
2024-02-21 16:50:15 +01:00
|
|
|
fi
|
|
|
|
|
2024-05-06 07:47:13 +02:00
|
|
|
# https://codeberg.org/flohmarkt/flohmarkt_ynh/issues/12
|
2024-05-07 12:18:36 +02:00
|
|
|
ynh_script_progression --message="Removing database and database user..." --weight=2
|
|
|
|
# remove DB
|
|
|
|
curl -s -X DELETE 'http://127.0.0.1:5984/flohmarkt' --user "admin:${password_couchdb_admin}"
|
|
|
|
# remove DB user for this instance:
|
|
|
|
# get rev for the user and then delete user/rev
|
|
|
|
curl -s -X DELETE "http://127.0.0.1:5984/_users/org.couchdb.user%3A${app}?rev=$( curl -sX GET "http://127.0.0.1:5984/_users/org.couchdb.user%3A${app}" --user "admin:${password_couchdb_admin}" | jq -r ._rev)" --user "admin:${password_couchdb_admin}"
|
2024-04-17 15:21:52 +02:00
|
|
|
|
2024-02-21 16:50:15 +01:00
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
2024-05-06 07:47:13 +02:00
|
|
|
# remove logfiles directory
|
|
|
|
# https://codeberg.org/flohmarkt/flohmarkt_ynh/issues/29
|
|
|
|
# can only remove a subdir or one file
|
|
|
|
ynh_secure_remove --file="${flohmarkt_log_dir}"
|
2024-04-25 09:48:43 +02:00
|
|
|
|
2024-02-21 16:50:15 +01:00
|
|
|
# Remove the dedicated NGINX config
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
|
|
|
|
# Remove the dedicated Fail2Ban config
|
|
|
|
ynh_remove_fail2ban_config
|
|
|
|
|
2024-04-21 19:47:56 +02:00
|
|
|
# Remove home
|
2024-05-06 07:47:13 +02:00
|
|
|
# https://codeberg.org/flohmarkt/flohmarkt_ynh/issues/29
|
2024-04-21 19:47:56 +02:00
|
|
|
ynh_script_progression --message="Removing data directory..." --weight=2
|
|
|
|
ynh_secure_remove --file=$data_dir
|
|
|
|
|
2024-04-22 11:21:07 +02:00
|
|
|
# remove systemd service
|
|
|
|
ynh_script_progression --message="Removing data directory..." --weight=2
|
|
|
|
ynh_remove_systemd_config
|
|
|
|
|
2024-05-07 12:18:36 +02:00
|
|
|
# remove symlinks
|
|
|
|
ynh_secure_remove "$flohmarkt_sym_install"
|
|
|
|
ynh_secure_remove "$flohmarkt_sym_data_dir"
|
|
|
|
|
2024-02-21 16:50:15 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|