mirror of
https://github.com/YunoHost-Apps/svgedit_ynh.git
synced 2024-09-03 20:26:24 +02:00
21 lines
432 B
Bash
Executable file
21 lines
432 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# See comments in install script
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
# Source YunoHost helpers
|
|
source /usr/share/yunohost/helpers
|
|
source _common.sh
|
|
|
|
# Retrieve app settings
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
final_path=$(ynh_app_setting_get "$app" final_path)
|
|
|
|
# Remove dependencies
|
|
ynh_remove_app_dependencies
|
|
|
|
# Remove sources
|
|
ynh_secure_remove $final_path
|
|
|
|
# Remove nginx configuration file
|
|
ynh_remove_nginx_config
|