mirror of
https://github.com/YunoHost-Apps/rss-bridge_ynh.git
synced 2024-09-03 20:25:51 +02:00
50 lines
1.4 KiB
Text
50 lines
1.4 KiB
Text
|
#!/bin/bash
|
||
|
|
||
|
# Treat unset variables as an error
|
||
|
set -u
|
||
|
#=================================================
|
||
|
# GENERIC STARTING
|
||
|
#=================================================
|
||
|
# IMPORT GENERIC HELPERS
|
||
|
#=================================================
|
||
|
|
||
|
source _common.sh
|
||
|
source /usr/share/yunohost/helpers
|
||
|
|
||
|
#=================================================
|
||
|
# LOAD SETTINGS
|
||
|
#=================================================
|
||
|
|
||
|
app=$YNH_APP_INSTANCE_NAME
|
||
|
|
||
|
domain=$(ynh_app_setting_get $app domain)
|
||
|
db_name=$(ynh_app_setting_get $app db_name)
|
||
|
domain=$(ynh_app_setting_get "$app" domain)
|
||
|
|
||
|
#=================================================
|
||
|
# STANDARD REMOVE
|
||
|
#=================================================
|
||
|
|
||
|
#=================================================
|
||
|
# REMOVE APP MAIN DIR
|
||
|
#=================================================
|
||
|
|
||
|
ynh_secure_remove "/var/www/$app"
|
||
|
|
||
|
#=================================================
|
||
|
# REMOVE NGINX AND PHP-FPM CONFIGURATION
|
||
|
#=================================================
|
||
|
# Delete app directory and configurations
|
||
|
sudo rm -rf "/var/www/${app}"
|
||
|
sudo rm -f "/etc/php5/fpm/pool.d/${app}.conf"
|
||
|
[[ -n $domain ]] && sudo rm -f "/etc/nginx/conf.d/${domain}.d/${app}.conf"
|
||
|
|
||
|
# Reload services
|
||
|
sudo systemctl restart php5-fpm
|
||
|
sudo systemctl reload nginx
|
||
|
|
||
|
#=================================================
|
||
|
# REMOVE DEDICATED USER
|
||
|
#=================================================
|
||
|
|
||
|
ynh_system_user_delete $app
|