mirror of
https://github.com/YunoHost-Apps/mindmaps_ynh.git
synced 2024-09-03 19:45:59 +02:00
57 lines
1.6 KiB
Text
57 lines
1.6 KiB
Text
|
#!/bin/bash
|
||
|
|
||
|
#=================================================
|
||
|
# GENERIC START
|
||
|
#=================================================
|
||
|
# IMPORT GENERIC HELPERS
|
||
|
#=================================================
|
||
|
|
||
|
source _common.sh
|
||
|
source /usr/share/yunohost/helpers
|
||
|
|
||
|
#=================================================
|
||
|
# LOAD SETTINGS
|
||
|
#=================================================
|
||
|
ynh_print_info "Loading installation settings..."
|
||
|
|
||
|
app=$YNH_APP_INSTANCE_NAME
|
||
|
|
||
|
domain=$(ynh_app_setting_get $app domain)
|
||
|
final_path=$(ynh_app_setting_get $app final_path)
|
||
|
|
||
|
#=================================================
|
||
|
# STANDARD REMOVE
|
||
|
#=================================================
|
||
|
# REMOVE SERVICE FROM ADMIN PANEL
|
||
|
#=================================================
|
||
|
|
||
|
# Remove a service from the admin panel, added by `yunohost service add`
|
||
|
if yunohost service status | grep -q $app
|
||
|
then
|
||
|
ynh_print_info "Removing $app service"
|
||
|
yunohost service remove $app
|
||
|
fi
|
||
|
|
||
|
#=================================================
|
||
|
# REMOVE APP MAIN DIR
|
||
|
#=================================================
|
||
|
ynh_print_info "Removing app main directory"
|
||
|
|
||
|
# Remove the app directory securely
|
||
|
ynh_secure_remove "$final_path"
|
||
|
|
||
|
#=================================================
|
||
|
# REMOVE NGINX CONFIGURATION
|
||
|
#=================================================
|
||
|
ynh_print_info "Removing nginx web server configuration"
|
||
|
|
||
|
# Remove the dedicated nginx config
|
||
|
ynh_remove_nginx_config
|
||
|
|
||
|
#=================================================
|
||
|
# END OF SCRIPT
|
||
|
#=================================================
|
||
|
|
||
|
ynh_print_info "Removal of $app completed"
|
||
|
|