| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- #!/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
- # Stop flohmarkt service
- ynh_script_progression --message="Stopping $app..." --weight=2
- yunohost service stop $flohmarkt_filename
- # 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
- ynh_script_progression --message="Removing $app service integration..." --weight=2
- ynh_remove_systemd_config --service=$flohmarkt_filename
- yunohost service remove $flohmarkt_filename
- fi
- # https://codeberg.org/flohmarkt/flohmarkt_ynh/issues/12
- ynh_script_progression --message="Removing database and database user..." --weight=2
- # remove DB
- flohmarkt_ynh_delete_couchdb_db
- # remove DB user for this instance:
- flohmarkt_ynh_delete_couchdb_user
- # Remove the app-specific logrotate config
- ynh_script_progression --message="Removing logrotate configuration..." --weight=2
- ynh_remove_logrotate
- # remove logfiles directory
- # https://codeberg.org/flohmarkt/flohmarkt_ynh/issues/29
- # can only remove a subdir or one file
- ynh_script_progression --message="Removing logfiles..." --weight=2
- ynh_secure_remove --file="${flohmarkt_log_dir}"
- # Remove the dedicated NGINX config
- ynh_script_progression --message="Removing nginx configuration..." --weight=2
- ynh_remove_nginx_config
- # Remove the dedicated Fail2Ban config
- ynh_script_progression --message="Removing fail2ban configuration..." --weight=2
- ynh_remove_fail2ban_config
- # Remove home
- # https://codeberg.org/flohmarkt/flohmarkt_ynh/issues/29
- ynh_script_progression --message="Removing data directory..." --weight=2
- ynh_secure_remove --file=$data_dir
- # remove systemd service
- ynh_script_progression --message="Removing data directory..." --weight=2
- ynh_remove_systemd_config
- # remove symlinks
- ynh_script_progression --message="Removing symlinks..." --weight=2
- ynh_secure_remove --file="$flohmarkt_sym_install"
- rm "$flohmarkt_sym_install" || true
- ynh_secure_remove --file="$flohmarkt_sym_data_dir"
- rm "$flohmarkt_sym_data_dir" || true
- ynh_secure_remove --file="$flohmarkt_sym_log_dir"
- rm "$flohmarkt_sym_log_dir" || true
- #=================================================
- # END OF SCRIPT
- #=================================================
- ynh_script_progression --message="Removal of $app completed" --last
|