mirror of
https://github.com/YunoHost-Apps/webtrees_ynh.git
synced 2024-09-03 18:26:37 +02:00
40 lines
1 KiB
Bash
Executable file
40 lines
1 KiB
Bash
Executable file
#!/bin/bash
|
||
|
||
#=================================================
|
||
# GENERIC START
|
||
#=================================================
|
||
# IMPORT GENERIC HELPERS
|
||
#=================================================
|
||
|
||
source _common.sh
|
||
source /usr/share/yunohost/helpers
|
||
|
||
#=================================================
|
||
# LOAD SETTINGS
|
||
#=================================================
|
||
app=$YNH_APP_INSTANCE_NAME
|
||
|
||
# Retrieve app settings
|
||
domain=$(ynh_app_setting_get "$app" domain)
|
||
db_name=$(ynh_app_setting_get $app db_name)
|
||
|
||
|
||
# Remove the app directory securely
|
||
ynh_secure_remove "/var/www/$app"
|
||
|
||
#=================================================
|
||
# REMOVE NGINX CONFIGURATION
|
||
#=================================================
|
||
|
||
# Remove the dedicated nginx config
|
||
ynh_remove_nginx_config
|
||
|
||
|
||
### PHP (remove if not used) ###
|
||
# If a dedicated php-fpm process is used:
|
||
# sudo rm -f /etc/php5/fpm/pool.d/$app.conf
|
||
# sudo service php5-fpm reload
|
||
### PHP end ###
|
||
|
||
# Remove a database if it exists, along with the associated user
|
||
ynh_mysql_remove_db $db_name $db_name
|