1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/webtrees_ynh.git synced 2024-09-03 18:26:37 +02:00
webtrees_ynh/scripts/remove

41 lines
1 KiB
Text
Raw Normal View History

2017-07-01 19:54:37 +02:00
#!/bin/bash
2017-08-01 11:29:01 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-08-01 11:29:01 +02:00
source _common.sh
2017-07-01 19:54:37 +02:00
source /usr/share/yunohost/helpers
2017-08-01 11:29:01 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
2017-07-01 19:54:37 +02:00
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
2017-08-01 11:29:01 +02:00
db_name=$(ynh_app_setting_get $app db_name)
# Remove the app directory securely
ynh_secure_remove "/var/www/$app"
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
2017-07-01 19:54:37 +02:00
2017-08-01 11:29:01 +02:00
# Remove the dedicated nginx config
ynh_remove_nginx_config
2017-07-01 19:54:37 +02:00
### 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 ###
2017-08-01 11:29:01 +02:00
# Remove a database if it exists, along with the associated user
ynh_mysql_remove_db $db_name $db_name