1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yourls_ynh.git synced 2024-09-03 20:35:59 +02:00
yourls_ynh/scripts/remove

59 lines
1.5 KiB
Text
Raw Normal View History

2014-06-13 11:22:25 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2014-06-13 11:22:25 +02:00
source _common.sh
source /usr/share/yunohost/helpers
2014-06-13 17:55:42 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
db_name=$(ynh_app_setting_get $app db_name)
2018-06-04 21:28:11 +02:00
final_path=$(ynh_app_setting_get $app final_path)
# Remove a database if it exists, along with the associated user
ynh_mysql_remove_db $db_name $db_name
#=================================================
# REMOVE APP MAIN DIR
#=================================================
2019-01-04 16:15:48 +01:00
# Remove the protected_urls
python3 $final_path/remove_sso_conf.py
# Remove the app directory securely
2018-06-04 21:28:11 +02:00
ynh_secure_remove "$final_path"
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
# Remove the dedicated nginx config
ynh_remove_nginx_config
2018-06-04 21:28:11 +02:00
#=================================================
# REMOVE PHP-FPM CONFIGURATION
#=================================================
# Remove the dedicated php-fpm config
ynh_remove_fpm_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
#=================================================
# Delete a system user
ynh_system_user_delete $app