| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #!/bin/bash
- #=================================================
- # GENERIC START
- #=================================================
- # IMPORT GENERIC HELPERS
- #=================================================
- source /usr/share/yunohost/helpers
- source _common.sh
- #=================================================
- # 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
- # 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
- flohmarkt_ynh_delete_couchdb_user
- 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
- # Remove the app-specific logrotate config
- ynh_script_progression --message="Removing logrotate configuration..." --weight=2
- ynh_remove_logrotate
- # 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 systemd service
- ynh_script_progression --message="Removing systemd.service directory..." --weight=2
- ynh_remove_systemd_config
- # remove symlinks
- ynh_script_progression --message="Removing symlinks..." --weight=2
- # no ynh_secure_remove:
- # https://codeberg.org/flohmarkt/flohmarkt_ynh/issues/52
- rm "$flohmarkt_sym_install" || true
- rm "$flohmarkt_sym_data_dir" || true
- rm "$flohmarkt_sym_log_dir" || true
- #=================================================
- # END OF SCRIPT
- #=================================================
- ynh_script_progression --message="Removal of $app completed" --last
|