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

67 lines
1.8 KiB
Text
Raw Normal View History

#!/bin/bash
2017-08-26 03:24:41 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-08-26 03:24:41 +02:00
source _common.sh
2017-06-02 17:15:57 +02:00
source /usr/share/yunohost/helpers
2017-08-26 03:24:41 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2017-06-02 17:15:57 +02:00
app=$YNH_APP_INSTANCE_NAME
2017-08-26 03:24:41 +02:00
domain=$(ynh_app_setting_get $app domain)
db_name=$(ynh_app_setting_get $app db_name)
2019-03-03 18:12:41 +01:00
final_path=$(ynh_app_setting_get $app final_path)
2017-08-26 03:24:41 +02:00
#=================================================
# STANDARD REMOVE
#=================================================
# REMOVE DEPENDENCIES
#=================================================
2017-08-26 03:24:41 +02:00
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2017-08-26 03:24:41 +02:00
#=================================================
# REMOVE THE MYSQL DATABASE
#=================================================
2017-08-26 03:24:41 +02:00
# Remove a database if it exists, along with the associated user
ynh_mysql_remove_db $db_name $db_name
#=================================================
# REMOVE APP MAIN DIR
#=================================================
# Remove the app directory securely
2019-03-03 18:12:41 +01:00
ynh_secure_remove "$final_path"
2017-08-26 03:24:41 +02:00
#=================================================
# REMOVE NGINX CONFIGURATION
#=================================================
# Remove the dedicated nginx config
ynh_remove_nginx_config
#=================================================
# 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