mirror of
https://github.com/YunoHost-Apps/libreerp_ynh.git
synced 2024-09-03 19:36:13 +02:00
27 lines
457 B
Bash
27 lines
457 B
Bash
#!/bin/bash
|
|
set -u
|
|
|
|
source /usr/share/yunohost/helpers
|
|
source _future.sh
|
|
source _common.sh
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
# Retrieve app settings
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
final_path=$(ynh_app_setting_get "$app" final_path)
|
|
|
|
yunohost service stop $app
|
|
yunohost service remove $app
|
|
ynh_psql_remove_db $app $app
|
|
|
|
ynh_secure_remove "$final_path"
|
|
|
|
ynh_remove_app_dependencies
|
|
|
|
ynh_system_user_delete $app
|
|
|
|
ynh_remove_nginx_config
|
|
|
|
ynh_del_swap
|