2017-03-17 12:10:31 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# See comments in install script
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
# Source YunoHost helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
2018-03-19 03:56:00 +01:00
|
|
|
source _common.sh
|
2017-03-17 12:10:31 +01:00
|
|
|
|
|
|
|
# Retrieve app settings
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2018-03-19 03:56:00 +01:00
|
|
|
final_path=$(ynh_app_setting_get "$app" final_path)
|
|
|
|
|
|
|
|
# Remove dependencies
|
|
|
|
ynh_remove_app_dependencies
|
2017-03-17 12:10:31 +01:00
|
|
|
|
|
|
|
# Remove sources
|
2018-03-19 03:56:00 +01:00
|
|
|
ynh_secure_remove $final_path
|
2017-03-17 12:10:31 +01:00
|
|
|
|
|
|
|
# Remove nginx configuration file
|
2018-03-19 03:56:00 +01:00
|
|
|
ynh_remove_nginx_config
|