mirror of
https://github.com/YunoHost-Apps/wallabag2_ynh.git
synced 2024-10-01 13:35:06 +02:00
62 lines
No EOL
1.7 KiB
Bash
62 lines
No EOL
1.7 KiB
Bash
#!/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 DEPENDENCIES
|
|
#=================================================
|
|
|
|
ynh_remove_app_dependencies
|
|
# The following command is kept as a matter of transition with the previous way
|
|
# of managing dependencies
|
|
ynh_package_autoremove "wallabag-deps" || true
|
|
|
|
#=================================================
|
|
# REMOVE THE MYSQL DB
|
|
#=================================================
|
|
|
|
ynh_mysql_remove_db "$app" "$db_name"
|
|
|
|
#=================================================
|
|
# REMOVE APP MAIN DIR
|
|
#=================================================
|
|
|
|
ynh_secure_remove "/var/www/$app"
|
|
|
|
#=================================================
|
|
# REMOVE NGINX AND PHP-FPM CONFIGURATION
|
|
#=================================================
|
|
|
|
ynh_remove_fpm_config
|
|
ynh_remove_nginx_config
|
|
|
|
# Reload services
|
|
sudo systemctl restart php5-fpm
|
|
sudo systemctl reload nginx
|
|
|
|
#=================================================
|
|
# REMOVE DEDICATED USER
|
|
#=================================================
|
|
|
|
ynh_system_user_delete $app |